Created
August 16, 2022 14:03
-
-
Save ats/5d02c945aaf3caa3d1b0f5b38e678b2d to your computer and use it in GitHub Desktop.
nvim/vimr config file ~/.config/nvim/ginit.vim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Fix key mapping issues for GUI | |
inoremap <silent> <S-Insert> <C-R>+ | |
cnoremap <S-Insert> <C-R>+ | |
nnoremap <silent> <C-6> <C-^> | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" config for nvim-qt " | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" 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) | |
GuiTabline 0 | |
GuiPopupmenu 0 | |
GuiLinespace 2 | |
GuiFont! Hack\ NF:h10:l | |
endif | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" config for fvim " | |
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
if exists('g:fvim_loaded') | |
set termguicolors | |
colorscheme gruvbox8_hard | |
set guifont=Hack\ NF:h13 | |
" Cursor tweaks | |
FVimCursorSmoothMove v:true | |
FVimCursorSmoothBlink v:true | |
" Background composition, can be 'none', 'blur' or 'acrylic' | |
FVimBackgroundComposition 'none' | |
FVimBackgroundOpacity 1.0 | |
FVimBackgroundAltOpacity 1.0 | |
" Title bar tweaks (themed with colorscheme) | |
FVimCustomTitleBar v:true | |
" Debug UI overlay | |
FVimDrawFPS v:false | |
" Font debugging -- draw bounds around each glyph | |
FVimFontDrawBounds v:false | |
" Font tweaks | |
FVimFontAntialias v:true | |
FVimFontAutohint v:true | |
FVimFontHintLevel 'full' | |
FVimFontSubpixel v:true | |
FVimFontLigature v:true | |
" can be 'default', '14.0', '-1.0' etc. | |
FVimFontLineHeight '+1' | |
" Try to snap the fonts to the pixels, reduces blur | |
" in some situations (e.g. 100% DPI). | |
FVimFontAutoSnap v:true | |
" Font weight tuning, possible values are 100..900 | |
FVimFontNormalWeight 100 | |
FVimFontBoldWeight 700 | |
FVimUIPopupMenu v:false | |
endif | |
set background=light | |
"let g:solarized_termcolors=256 | |
colorscheme solarized | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment