From a4e06fe2836c644ef6786d3c07342e54d90d2445 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Mon, 23 Nov 2020 09:09:48 -0300 Subject: [PATCH] Neovide configuration --- nvim/init.vim | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 +" }}}