Browse Source

Fix formatting in init.vim

Frans Bergman 5 năm trước cách đây
mục cha
commit
ece94a72fe
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  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 ########## {{{