blob: 0a5540f8abbf505e19db5be2bfad17e5461b3a09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if exists("g:fvim_loaded")
set guifont=LiterationMono\ Nerd\ Font\ Mono:h18
nnoremap <A-CR> :FVimToggleFullScreen<CR>
FVimCursorSmoothMove v:true
FVimCursorSmoothBlink v:true
nnoremap <C--> :FVimBackgroundComposition 'transparent'<CR>:FVimBackgroundOpacity 0.8<CR>
nnoremap <C-=> :FVimBackgroundComposition 'none'<CR>:FVimBackgroundOpacity 1<CR>
FVimCustomTitleBar v:true
endif
if exists("g:neovide")
set guifont=LiterationMono\ Nerd\ Font\ Mono:h18
set linespace=-4
endif
|