mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-17 11:04:58 +00:00
chad nvim theme overlay lol
This commit is contained in:
parent
efe8d19d7a
commit
2c1131fe8e
6 changed files with 119 additions and 59 deletions
27
lua/chadrc.lua
Normal file
27
lua/chadrc.lua
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
---@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 = true,
|
||||
lazyload = true,
|
||||
},
|
||||
}
|
||||
|
||||
-- Disable nvdash if you want to keep your dashboard.lua
|
||||
M.nvdash = {
|
||||
load_on_startup = false,
|
||||
}
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue