diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-03 11:40:54 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-03 11:40:54 -0400 |
| commit | 5ab1759c774729cf8e147cb5dbcc98ce43e813d5 (patch) | |
| tree | 697a6d61dcc9dbffa5d4bb1383c46139ae652a4f | |
| parent | 3986bab2929ef1543b47c951ecc37a5ba013d3d1 (diff) | |
| download | nvim-config-5ab1759c774729cf8e147cb5dbcc98ce43e813d5.tar.gz nvim-config-5ab1759c774729cf8e147cb5dbcc98ce43e813d5.tar.xz | |
Switch to the nord theme. Eliminate the horrednous dark comment colors.
| -rw-r--r-- | init.vim | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -89,7 +89,7 @@ Plug 'neovim/nvim-lspconfig' Plug 'fatih/vim-go' Plug 'hashivim/vim-terraform' Plug 'MaxMEllon/vim-jsx-pretty' -Plug 'xavierd/clang_complete' +" Plug 'xavierd/clang_complete' " Neovim specific @@ -101,6 +101,7 @@ Plug 'w0ng/vim-hybrid' Plug 'altercation/vim-colors-solarized' Plug 'kristijanhusak/vim-hybrid-material' Plug 'Lokaltog/vim-monotone' +Plug 'arcticicestudio/nord-vim' call plug#end() @@ -137,15 +138,21 @@ set history=10000 " Useful on some terminals, not always supported in old tmux versions " set termguicolors " let g:airline_theme="monochrome" -let g:airline_theme="distinguished" +" let g:airline_theme="distinguished" " let g:airline_theme="hybrid" " colorscheme 256_noir " colorscheme distinguished " colorscheme sane -set background=dark -let g:hybrid_transparent_background = 1 -colorscheme hybrid_material +" set background=dark +" let g:hybrid_transparent_background = 1 +" colorscheme hybrid_material + +" autocmd ColorScheme nord highlight vimCommentTitle ctermfg=10 guifg=#8FBCBB + +autocmd ColorScheme nord highlight Comment ctermfg=14 guifg=#8FBCBB +let g:nord_uniform_diff_background = 1 +colorscheme nord " For syntastic it's worth running @@ -177,7 +184,7 @@ let g:tagbar_ctags_bin='ctags' " path to directory where library can be found " let g:clang_library_path='/usr/local/lib' " let g:clang_library_path='/usr/lib/clang/12/lib' -let g:clang_library_path='/usr/lib/llvm-12/lib/libclang.so' +" let g:clang_library_path='/usr/lib/llvm-12/lib/libclang.so' " package clang-tools-extra on OpenBSD provides the library |
