summary refs log tree commit diff
Commit message (Collapse)AuthorAge
...
* Add may and refactor ssh configJune McEnroe2016-07-24
|
* Disable cursorlineJune McEnroe2016-07-18
|
* Use hard constrast gruvbox darkJune McEnroe2016-07-18
|
* Remove vim configurationJune McEnroe2016-07-15
|
* Add readline to README configurations listJune McEnroe2016-07-15
|
* Add vendor script to READMEJune McEnroe2016-07-15
|
* Pull latest pathogen and gruvboxJune McEnroe2016-07-15
|
* Add vendoring scriptJune McEnroe2016-07-15
|
* Use vi editing mode in readlineJune McEnroe2016-07-11
| | | | Dear lord why have I let myself suffer without this? Embarrassing.
* Highlight backquote strings in NASMJune McEnroe2016-07-09
|
* Force ft=nasm for *.asm and *.macJune McEnroe2016-07-09
|
* Highlight numbers with underscores in NASMJune McEnroe2016-07-09
|
* Vendor NASM syntax fileJune McEnroe2016-07-09
|
* Swap square brackets and bracesJune McEnroe2016-07-08
|
* Forward SSH agent to *.localJune McEnroe2016-07-04
|
* Check one directory up for .git/HEADJune McEnroe2016-06-20
|
* Set undofileJune McEnroe2016-06-18
|
* Use more as pager in psqlJune McEnroe2016-06-17
|
* Set PAGER=lessJune McEnroe2016-06-09
|
* Add port to april ssh configJune McEnroe2016-06-06
|
* Add april to SSHJune McEnroe2016-05-28
|
* Set background in nvim from iTerm profileJune McEnroe2016-05-16
| | | | Is this overkill?
* Add light iTerm profileJune McEnroe2016-05-15
|
* Set gruvbox vert split relative to backgroundJune McEnroe2016-05-15
|
* Cache GPG key for half an hourJune McEnroe2016-05-15
|
* Test for linux insteadJune McEnroe2016-04-29
|
* Remove explicit syntax/filetype onJune McEnroe2016-04-29
| | | | neovim 0.1.4 actually doesn't need them!
* Remove gvim=mvim aliasJune McEnroe2016-04-12
|
* Detect Darwin or *BSD for aliasesJune McEnroe2016-04-12
|
* Use default pinentry and set GPG_TTYJune McEnroe2016-04-07
|
* Add git config override includeJune McEnroe2016-04-07
|
* Simplify install scriptJune McEnroe2016-04-06
|
* Add gpg-agent to READMEJune McEnroe2016-04-06
|
* Always sign git commitsJune McEnroe2016-04-06
|
* Use standard socket for gpg-agentJune McEnroe2016-04-06
|
* Set iTerm font to PointfreeJune McEnroe2016-04-06
|
* Add gpg-agent configJune McEnroe2016-04-05
|
* Remove git push configJune McEnroe2016-03-31
| | | | Git 2.8 finally stops yelling at you if you haven't set it.
* Map nohlsearch to default <leader><leader>June McEnroe2016-03-15
|
* Set splitbelow splitrightJune McEnroe2016-02-23
|
* Revert "Enable nvim set cursor shape"June McEnroe2016-02-19
| | | | | | This reverts commit 8f202ced239667261d570ce65c6c73ffb030965a. I don't like how thin iTerm renders the line cursor.
* Enable nvim set cursor shapeJune McEnroe2016-02-19
|
* Fix rprompt truncationJune McEnroe2016-02-19
|
* Map scroll wheel in nvimJune McEnroe2016-02-09
|
* Always render fonts with thin strokesJune McEnroe2016-02-08
|
* Fix iTerm bold colorJune McEnroe2016-02-06
|
* Disable iTerm transparencyJune McEnroe2016-02-05
|
* Update configurations list in readmeJune McEnroe2016-02-05
|
* Move gitconfigJune McEnroe2016-02-05
|
* Add nvim configurationJune McEnroe2016-02-05
|
onfig.sh?id=64f30688faef0876641a8e0e4f26b5c673c291d4&follow=1'>t0109: test more URLsJohn Keeping In order to ensure that we don't access $HOME at some point after initial startup when rendering a specific view, run the strace test on a range of different pages. This ensures that we don't end up reading a configuration later for some specific view. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer