diff options
Diffstat (limited to 'vim/.vimrc')
-rw-r--r-- | vim/.vimrc | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -72,10 +72,11 @@ if has("nvim") && hostname() != "peuplier" endif " Colors -Plug 'altercation/vim-colors-solarized' +Plug 'lifepillar/vim-solarized8' Plug 'junegunn/seoul256.vim' Plug 'romainl/Apprentice' Plug 'JuliaEditorSupport/julia-vim' +Plug 'arcticicestudio/nord-vim' " Plug 'axvr/zepl.vim' call plug#end() @@ -394,9 +395,20 @@ augroup END "" Colorscheme {{{1 nnoremap ,cd :colorscheme darjeeling<cr> nnoremap ,cs :colorscheme seoul256<cr> + set notermguicolors colo darjeeling +" set termguicolors +" colo nord +" highlight Comment ctermfg=66 guifg=#5f8787 +" highlight SignColumn ctermbg=234 ctermfg=232 guibg=#1c1c1c guifg=#080808 + + + +" set notermguicolors +" colo darjeeling + "" Neovim {{{1 if has("nvim") nnoremap goh :let @a=getcwd() \| lcd %:h \| terminal<cr>:execute 'lcd '.@a<cr>A @@ -463,3 +475,5 @@ function! Get_surrounding() return env endif endfunction + +" vim: nospell |