diff --git a/.config/goneovim/settings.toml b/.config/goneovim/settings.toml new file mode 100644 index 0000000..5b2053a --- /dev/null +++ b/.config/goneovim/settings.toml @@ -0,0 +1,8 @@ +[Editor] +SmoothScroll = true + +[Cursor] +SmoothMove = true + +[MiniMap] +Disable = false diff --git a/.config/nvim/lua/options.lua b/.config/nvim/lua/options.lua index 1a99150..3a3bb2d 100644 --- a/.config/nvim/lua/options.lua +++ b/.config/nvim/lua/options.lua @@ -40,6 +40,8 @@ o.linebreak = true o.laststatus = 3 +o.pumblend = 10 + -- Highlight on yank local function custom_highlight_on_yank() return vim.highlight.on_yank({ timeout = 1200 }) @@ -50,8 +52,5 @@ vim.api.nvim_create_autocmd("TextYankPost", { callback = custom_highlight_on_yank, }) --- Noevide -vim.g.neovide_refresh_rate = 90 - -- Disable diagnostics vim.diagnostic.disable()