[Nvim] update
This commit is contained in:
@@ -1,18 +1,43 @@
|
||||
-- This file needs to have same structure as nvconfig.lua
|
||||
-- This file needs to have same structure as nvconfig.lua
|
||||
-- https://github.com/NvChad/ui/blob/v3.0/lua/nvconfig.lua
|
||||
-- Please read that file to know all available options :(
|
||||
-- Please read that file to know all available options :(
|
||||
|
||||
---@type ChadrcConfig
|
||||
local M = {}
|
||||
|
||||
M.base46 = {
|
||||
theme = "onedark",
|
||||
transparency = true
|
||||
local M = {
|
||||
base46 = {
|
||||
theme = "onedark",
|
||||
transparency = true,
|
||||
lsp = { signature = true },
|
||||
hl_override = {
|
||||
NvimTreeGitDirty = {
|
||||
fg = "#DBA55D",
|
||||
},
|
||||
},
|
||||
-- Comment = { italic = true },
|
||||
-- ["@comment"] = { italic = true },
|
||||
},
|
||||
|
||||
-- hl_override = {
|
||||
-- Comment = { italic = true },
|
||||
-- ["@comment"] = { italic = true },
|
||||
-- },
|
||||
nvdash = {
|
||||
load_on_startup = false,
|
||||
-- buttons = {
|
||||
-- { txt = " Find File", keys = "Spc f f", cmd = "Telescope find_files custom" },
|
||||
-- { txt = " Recent Files", keys = "Spc f o", cmd = "Telescope oldfiles" },
|
||||
-- -- more... check nvconfig.lua file for full list of buttons
|
||||
-- },
|
||||
},
|
||||
|
||||
-- ui = {
|
||||
-- -- lazyload it when there are 1+ buffers
|
||||
-- tabufline = {
|
||||
-- enabled = true,
|
||||
-- lazyload = true,
|
||||
-- order = { "treeOffset", "buffers", "tabs", "btns" },
|
||||
-- modules = nil,
|
||||
-- bufwidth = 21,
|
||||
-- transparency = true,
|
||||
-- },
|
||||
-- },
|
||||
}
|
||||
|
||||
return M
|
||||
|
Reference in New Issue
Block a user