summaryrefslogtreecommitdiff
path: root/neovim
diff options
context:
space:
mode:
authorMichaël Ball <michael.ball@krotosaudio.com>2024-11-14 17:04:38 +0000
committerMichaël Ball <michael.ball@krotosaudio.com>2024-11-14 17:04:38 +0000
commite72b1a557614f30de2915910c55441af985ad2e9 (patch)
tree511b73f966f78490d871db8e5411612c2987221a /neovim
parent9beaffcc8fb1d945b87d6c1058a36b2e982bed16 (diff)
Neovide settingsmain
Diffstat (limited to 'neovim')
-rw-r--r--neovim/.config/nvim/ginit.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/neovim/.config/nvim/ginit.vim b/neovim/.config/nvim/ginit.vim
index fb39590..bdd2320 100644
--- a/neovim/.config/nvim/ginit.vim
+++ b/neovim/.config/nvim/ginit.vim
@@ -1,8 +1,14 @@
if exists('g:GtkGuiLoaded')
call rpcnotify(1, 'Gui', 'Font', 'Iosevka SS10 12')
call rpcnotify(1, 'Gui', 'Option', 'Tabline', 1)
+elseif exists("g:neovide")
+ set guifont=Iosevka\ NFM:h14
+ let g:neovide_cursor_animation_length = 0
+ let g:neovide_position_animation_length = 0
+ let g:neovide_scroll_animation_length = 0
+ let g:neovide_theme = 'auto'
else
- GuiFont Iosevka SS10:h12
+ GuiFont Iosevka NFM:h14
endif
if has('autocmd') && exists('g:GtkGuiLoaded')