diff options
author | Urbain Vaes <urbain@vaes.uk> | 2023-01-11 13:43:48 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2023-01-11 13:43:48 +0100 |
commit | 37c28f5cadd9dded391fdccc848c745595d79801 (patch) | |
tree | 1522764a198cb1e4297ed36f7232920190862691 /vim | |
parent | 54aa2aef05fff301af341886a829c87927c6245f (diff) |
Add nospell in modeline
Diffstat (limited to 'vim')
-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 |