mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
19 lines
607 B
VimL
19 lines
607 B
VimL
" to check if neovim-qt is running, use `exists('g:GuiLoaded')`,
|
|
" see https://github.com/equalsraf/neovim-qt/issues/219
|
|
if exists('g:GuiLoaded')
|
|
" call GuiWindowMaximized(1)
|
|
GuiPopupmenu 0
|
|
GuiTabline 0
|
|
GuiLinespace 3
|
|
GuiFont! Hack:h10:l
|
|
" GuiFont! Microsoft\ YaHei\ Mono:h10:l
|
|
|
|
" use shift+insert for paste in neovim-qt
|
|
" see https://github.com/equalsraf/neovim-qt/issues/327#issuecomment-325660764
|
|
imap <silent> <S-Insert> <C-R>+
|
|
cmap <silent> <S-Insert> <C-R>+
|
|
|
|
" For Windows, Ctrl-6 does not work. So we use this mapping instead.
|
|
nmap <C-6> <C-^>
|
|
endif
|