소스 검색

setting the background should not be neccessary

Kevin Heinicke 9 년 전
부모
커밋
3390ed49b8
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  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}