Surround vim crypto settings in if(supprots) block
This commit is contained in:
parent
43f7f7c150
commit
ed62755cfe
1 changed files with 6 additions and 4 deletions
2
vimrc
2
vimrc
|
@ -24,11 +24,13 @@ if &t_Co > 2 || has("gui_running")
|
||||||
set hlsearch "Highlight search results
|
set hlsearch "Highlight search results
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if has("cryptv")
|
||||||
if v:version >= 800
|
if v:version >= 800
|
||||||
set cm=blowfish2
|
set cm=blowfish2
|
||||||
elseif v:version >= 703
|
elseif v:version >= 703
|
||||||
set cm=blowfish
|
set cm=blowfish
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
set colorcolumn=+1
|
set colorcolumn=+1
|
||||||
hi ColorColumn ctermbg=magenta
|
hi ColorColumn ctermbg=magenta
|
||||||
|
|
Loading…
Reference in a new issue