diff --git a/lua/taken/core/neovide.lua b/lua/taken/core/neovide.lua index 958bdef..0b92495 100644 --- a/lua/taken/core/neovide.lua +++ b/lua/taken/core/neovide.lua @@ -1,3 +1,6 @@ +vim.o.guifont = "Mononoki Nerd Font Mono:h16" + +-- neovide --[[ local alpha = function() return string.format("%x", math.floor(255 * vim.g.transparency or 0.8)) end @@ -11,8 +14,14 @@ if vim.g.neovide and vim.fn.getcwd() == neovideDir then vim.cmd([[cd ~]]) end -vim.o.guifont = "JetBrainsMono NFM:h16" - vim.g.neovide_refresh_rate = 165 vim.g.neovide_refresh_rate_idle = 5 vim.g.neovide_cursor_vfx_mode = "railgun" + +-- goneovim + +local goneovimDir = "C:\\Users\\Ante\\scoop\\apps\\goneovim\\current" + +if vim.g.goneovim and vim.fn.getcwd() == goneovimDir then + vim.cmd([[cd ~]]) +end