2024-10-09 13:40:22 +00:00
|
|
|
-- This file needs to have same structure as nvconfig.lua
|
2024-10-06 06:41:31 +00:00
|
|
|
-- https://github.com/NvChad/ui/blob/v3.0/lua/nvconfig.lua
|
2024-10-09 13:40:22 +00:00
|
|
|
-- Please read that file to know all available options :(
|
2024-10-04 13:58:17 +00:00
|
|
|
|
|
|
|
---@type ChadrcConfig
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
M.base46 = {
|
|
|
|
theme = "rosepine",
|
|
|
|
}
|
|
|
|
|
|
|
|
M.ui = {
|
|
|
|
tabufline = {
|
|
|
|
enabled = false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
M.nvdash = {
|
2024-10-09 13:40:22 +00:00
|
|
|
load_on_startup = false,
|
2024-10-04 13:58:17 +00:00
|
|
|
}
|
|
|
|
return M
|