diff --git a/nvim/init.vim b/nvim/init.vim index 217c0f8..ec2eead 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -63,7 +63,7 @@ nmap :SK " Polyglot {{{ " let g:polyglot_disabled = ["csv"] -let g:polyglot_disabled = ['sensible'] +let g:polyglot_disabled = ['sensible', 'csv'] " }}} " }}} @@ -132,3 +132,11 @@ au FileType sh setlocal shiftwidth=4 " number of spaces to use for auto-indenta au FileType sh setlocal softtabstop=4 " when deleting characters, consider 4 spaces as a tab " }}} " }}} + +" GUI configuration {{{ +set guifont=Cascadia\ Mono:h40 +let g:neovide_no_idle=v:true +let g:neovide_fullscreen=v:true +let g:neovide_cursor_antialiasing=v:true +let g:neovide_cursor_animation_length=0.05 +" }}}