From fcdb824f5288466d6c30f30d8e6865c9b4a2aada Mon Sep 17 00:00:00 2001 From: Alexandre Ignjatovic Date: Wed, 24 Jul 2024 11:07:46 +0200 Subject: [PATCH] Add neovide config --- init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/init.lua b/init.lua index 99c8ac00..0f153117 100644 --- a/init.lua +++ b/init.lua @@ -156,6 +156,13 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 +-- Neovide configuration +if vim.g.neovide then + vim.o.guifont = 'RobotoMono Nerd Font Mono:h10' -- text below applies for VimScript + vim.g.neovide_cursor_antialiasing = true + vim.g.neovide_cursor_vfx_mode = 'railgun' +end + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()`