Neovide config and transparent floats

This commit is contained in:
2024-02-19 10:22:20 +01:00
parent 6af13b9904
commit 1306fba6cf

View File

@@ -5,7 +5,6 @@ return {
opts = { opts = {
options = { options = {
opt = { opt = {
background = "dark",
clipboard = "", clipboard = "",
cmdheight = 1, cmdheight = 1,
expandtab = true, expandtab = true,
@@ -15,6 +14,7 @@ return {
guifont = { "VictorMono Nerd Font", "Hack Nerd Font Mono", ":h10" }, guifont = { "VictorMono Nerd Font", "Hack Nerd Font Mono", ":h10" },
listchars = { tab = "> ", extends = ">", precedes = "<", space = "·" }, listchars = { tab = "> ", extends = ">", precedes = "<", space = "·" },
number = true, number = true,
path = vim.list_extend(vim.opt.path:get(), { "**" }),
relativenumber = false, relativenumber = false,
shiftwidth = 4, shiftwidth = 4,
signcolumn = "auto", signcolumn = "auto",
@@ -22,9 +22,13 @@ return {
tabstop = 4, tabstop = 4,
textwidth = 120, textwidth = 120,
wrap = true, wrap = true,
path = vim.list_extend(vim.opt.path:get(), { "**" }), winblend = 50,
pumblend = 30,
}, },
g = { g = {
neovide_hide_mouse_when_typing = true,
neovide_theme = "auto",
neovide_floating_shadow = false,
rust_recommended_style = 0, rust_recommended_style = 0,
}, },
}, },