1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Update ginit.vim

This commit is contained in:
jdhao 2020-05-23 13:50:44 +08:00 committed by GitHub
parent 5febd41eb0
commit a0458b3129
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,8 @@
" Fix key mapping issues for GUI
inoremap <silent> <S-Insert> <C-R>+
cnoremap <silent> <S-Insert> <C-R>+
nnoremap <silent> <C-6> <C-^>
" To check if neovim-qt is running, use `exists('g:GuiLoaded')`, " To check if neovim-qt is running, use `exists('g:GuiLoaded')`,
" see https://github.com/equalsraf/neovim-qt/issues/219 " see https://github.com/equalsraf/neovim-qt/issues/219
if exists('g:GuiLoaded') if exists('g:GuiLoaded')
@ -12,7 +17,6 @@ if exists('g:fvim_loaded')
set termguicolors set termguicolors
colorscheme gruvbox8_hard colorscheme gruvbox8_hard
set guifont=Hack:h13 set guifont=Hack:h13
" Cursor tweaks " Cursor tweaks
FVimCursorSmoothMove v:true FVimCursorSmoothMove v:true
FVimCursorSmoothBlink v:true FVimCursorSmoothBlink v:true