mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 09:01:16 +00:00
26 lines
566 B
Lua
26 lines
566 B
Lua
---@type ChadrcConfig
|
|
local M = {}
|
|
|
|
M.base46 = {
|
|
theme = "gruvbox", -- NvChad's gruvbox theme
|
|
transparency = true, -- Keep your transparent mode
|
|
-- theme_toggle = { "gruvbox", "gruvbox_light" },
|
|
}
|
|
|
|
M.ui = {
|
|
statusline = {
|
|
enabled = true,
|
|
theme = "default", -- options: default, vscode, vscode_colored, minimal
|
|
separator_style = "round", -- default, round, block, arrow
|
|
},
|
|
tabufline = {
|
|
enabled = false,
|
|
},
|
|
}
|
|
|
|
-- Disable nvdash if you want to keep your dashboard.lua
|
|
M.nvdash = {
|
|
load_on_startup = false,
|
|
}
|
|
|
|
return M
|