From fc844d7e2b35ab498af13a4c040dacdbc5928fe2 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 15 Sep 2017 11:31:05 -0400 Subject: Use 4-space indent everywhere --- home/.config/nvim/init.vim | 1 - 1 file changed, 1 deletion(-) (limited to 'home') diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index f09485de..35a730eb 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -7,7 +7,6 @@ command! W w autocmd BufNewFile,BufRead *.asm,*.mac setfiletype nasm set tabstop=8 expandtab shiftwidth=4 shiftround smartindent -autocmd FileType sh,zsh,ruby setlocal shiftwidth=2 set ignorecase smartcase inccommand=nosplit nmap :nohlsearch set foldmethod=syntax foldlevel=99 -- cgit 1.4.1 web frontend for git
about summary refs log tree commit diff
Commit message (Collapse)Author
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