diff options
Diffstat (limited to 'init.vim')
| -rw-r--r-- | init.vim | 26 |
1 files changed, 24 insertions, 2 deletions
@@ -11,7 +11,29 @@ source ~/.vim/inc/ctrlp.vim filetype plugin on set omnifunc=syntaxcomplete#Complete +" Stolen from the help page: +" +" One typical way to use the netrw tree display is to: > +" +" vim . +" (use i until a tree display shows) +" navigate to a file +" v (edit as desired in vertically split window) +" ctrl-w h (to return to the netrw listing) +" P (edit newly selected file in the previous window) +" ctrl-w h (to return to the netrw listing) +" P (edit newly selected file in the previous window) +let g:netrw_liststyle=3 -set list +set nonu +set termguicolors +set background=dark +syntax off +let g:airline_theme="monochrome" -colorscheme distinguished +" colorscheme distinguished +" colorscheme solarized +" set background=light +" set background=dark +" colorscheme dracula +"colorscheme orbital |
