From 1306fba6cf9025b45abd508ed184b1cdd4c4e003 Mon Sep 17 00:00:00 2001 From: Niverton Date: Mon, 19 Feb 2024 10:22:20 +0100 Subject: [PATCH] Neovide config and transparent floats --- lua/plugins/14-options.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lua/plugins/14-options.lua b/lua/plugins/14-options.lua index 8a90520..f3bdd0a 100644 --- a/lua/plugins/14-options.lua +++ b/lua/plugins/14-options.lua @@ -5,7 +5,6 @@ return { opts = { options = { opt = { - background = "dark", clipboard = "", cmdheight = 1, expandtab = true, @@ -15,6 +14,7 @@ return { guifont = { "VictorMono Nerd Font", "Hack Nerd Font Mono", ":h10" }, listchars = { tab = "> ", extends = ">", precedes = "<", space = "ยท" }, number = true, + path = vim.list_extend(vim.opt.path:get(), { "**" }), relativenumber = false, shiftwidth = 4, signcolumn = "auto", @@ -22,9 +22,13 @@ return { tabstop = 4, textwidth = 120, wrap = true, - path = vim.list_extend(vim.opt.path:get(), { "**" }), + winblend = 50, + pumblend = 30, }, g = { + neovide_hide_mouse_when_typing = true, + neovide_theme = "auto", + neovide_floating_shadow = false, rust_recommended_style = 0, }, },