From 55016a51e2a5300a32dff5b52eda21293bea3a95 Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Thu, 11 May 2023 17:30:35 +0300 Subject: [PATCH] add neovide options --- lua/options.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/options.lua b/lua/options.lua index 02f74ff..4329e57 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -106,3 +106,9 @@ opt('softtabstop', tab_size, buffer) -- Place splits below and to the right by default opt('splitbelow', true) opt('splitright', true) + +-- Scale neovide a bit +if vim.g.neovide then + vim.g.neovide_scale_factor = 0.7 + vim.g.neovide_hide_mouse_when_typing = true +end