blob: f50fdd638544d3d3cd9c54257c841c78a31324e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if exists("g:fvim_loaded") || exists("g:nvy")
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:nvy")
set guifont=LiterationMono\ Nerd\ Font\ Mono:h18
endif
if exists("g:neovide")
set guifont=LiterationMono\ Nerd\ Font\ Mono:h18
set linespace=-4
endif
|