Przeglądaj źródła

setting the background should not be neccessary

Kevin Heinicke 9 lat temu
rodzic
commit
3390ed49b8
1 zmienionych plików z 3 dodań i 4 usunięć
  1. 3 4
      nvimrc

+ 3 - 4
nvimrc

@@ -73,6 +73,9 @@ command Q q
 command Qa qa
 command WQ wq
 
+" color scheme
+colo solarized
+
 set ai  " Set auto inline on
 set number  " Show line numbers
 syntax on  " Set syntax highlighting on
@@ -93,10 +96,6 @@ set backupdir=~/.config/nvim/backup//
 set directory=~/.config/nvim/swap//
 set undodir=~/.config/nvim/undo//
 
-" color scheme
-set background=light
-colo solarized
-
 " YCM Configuration
 " dont use python-mode autocomplete obsolete now, because of YCM
 let g:ycm_filetype_whitelist = {'cpp': 1, 'py': 1, 'python': 1, 'arduino': 1, 'js': 1}