Add some neovide specific config options

This commit is contained in:
Evie Litherland-Smith 2023-04-18 12:00:12 +01:00
parent 1ec85f8292
commit ade1e15ac9
2 changed files with 16 additions and 0 deletions

View file

@ -9,6 +9,10 @@ vim.opt.list = true
vim.opt.splitbelow = true
vim.opt.splitright = true
if vim.g.neovide then
require "config.neovide"
end
-- Global
-- vim.g.python3_host_prog = vim.fn.stdpath "config" .. "/.venv/bin/python"
vim.g.loaded_ruby_provider = 0

View file

@ -0,0 +1,12 @@
vim.opt.guifont = "FiraCode Nerd Font:h14"
vim.g.neovide_padding_top = 5
vim.g.neovide_padding_bottom = 5
vim.g.neovide_padding_left = 5
vim.g.neovide_padding_right = 5
vim.g.neovide_floating_blur_amount_x = 2.0
vim.g.neovide_floating_blur_amount_y = 2.0
vim.g.neovide_hide_mouse_when_typing = true
vim.g.neovide_remember_window_size = false