Browse Source

Fix formatting in init.vim

Frans Bergman 5 years ago
parent
commit
ece94a72fe
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .config/nvim/init.vim

+ 3 - 3
.config/nvim/init.vim

@@ -27,13 +27,13 @@ let maplocalleader = "\\"
 highlight ExtraWhitespace ctermbg=red guibg=red
 match ExtraWhitespace /\s\+$/
 augroup trailingwhitespace
-autocmd!
-autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/
+    autocmd!
+    autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/
 augroup END
 
 " Tabs
 set list
-set listchars=tab:\|\ 
+set listchars=tab:\|\ ,
 " }}}
 
 " ########## Keybinds ########## {{{