aboutsummaryrefslogtreecommitdiff
path: root/vimrc-common
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc-common')
-rw-r--r--vimrc-common8
1 files changed, 8 insertions, 0 deletions
diff --git a/vimrc-common b/vimrc-common
index 6201d4b..03daedd 100644
--- a/vimrc-common
+++ b/vimrc-common
@@ -123,6 +123,14 @@ if has('nvim') " Neovim?
123 set inccommand=nosplit | " preview substitute and such things in real time 123 set inccommand=nosplit | " preview substitute and such things in real time
124endif 124endif
125 125
126if exists("g:neovide")
127 set guifont=monospace:h11:b
128 let g:neovide_cursor_animation_length=0.03
129 let g:neovide_cursor_trail_size=0.8
130 let g:neovide_scroll_animation_length = 0.05
131 let g:neovide_transparency = 0.9
132endif
133
126set pumheight=8 | " Determines the maximum number of items to show in the pop-up menu for 134set pumheight=8 | " Determines the maximum number of items to show in the pop-up menu for
127set scrolljump=4 | " how many lines get scrolled into view when cursor reaches the screens edge 135set scrolljump=4 | " how many lines get scrolled into view when cursor reaches the screens edge
128set scrolloff=4 | " keeps cursor centered 136set scrolloff=4 | " keeps cursor centered
..