81 lines
2.5 KiB
Lua
81 lines
2.5 KiB
Lua
-- Chadrc overrides this file
|
|
|
|
local M = {}
|
|
|
|
M.options = {
|
|
nvChad = {
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
update_branch = "dev",
|
|
},
|
|
}
|
|
|
|
M.ui = {
|
|
------------------------------- base46 -------------------------------------
|
|
-- hl = highlights
|
|
hl_add = {},
|
|
hl_override = {},
|
|
|
|
changed_themes = {},
|
|
theme_toggle = { "onedark", "one_light" },
|
|
theme = "onedark", -- default theme
|
|
|
|
transparency = false,
|
|
|
|
-- cmp themeing
|
|
cmp = {
|
|
icons = true,
|
|
lspkind_text = true,
|
|
style = "default", -- default/flat_light/flat_dark/atom/atom_colored
|
|
border_color = "grey_fg", -- only applicable for "default" style, use color names from base30 variables
|
|
selected_item_bg = "colored", -- colored / simple
|
|
},
|
|
|
|
------------------------------- nvchad_ui modules -----------------------------
|
|
statusline = {
|
|
theme = "default", -- default/vscode/vscode_colored/minimal
|
|
-- default/round/block/arrow separators work only for default statusline theme
|
|
-- round and block will work for minimal theme only
|
|
separator_style = "default",
|
|
overriden_modules = nil,
|
|
},
|
|
|
|
-- lazyload it when there are 1+ buffers
|
|
tabufline = {
|
|
enabled = true,
|
|
lazyload = true,
|
|
overriden_modules = nil,
|
|
},
|
|
|
|
-- nvdash (dashboard)
|
|
nvdash = {
|
|
load_on_startup = false,
|
|
|
|
header = {
|
|
" ▄ ▄ ",
|
|
" ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ ",
|
|
" █ ▄ █▄█ ▄▄▄ █ █▄█ █ █ ",
|
|
" ▄▄ █▄█▄▄▄█ █▄█▄█▄▄█▄▄█ █ ",
|
|
" ▄ █▄▄█ ▄ ▄▄ ▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ",
|
|
" █▄▄▄▄ ▄▄▄ █ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ █ ▄",
|
|
"▄ █ █▄█ █▄█ █ █ █▄█ █ █▄█ ▄▄▄ █ █",
|
|
"█▄█ ▄ █▄▄█▄▄█ █ ▄▄█ █ ▄ █ █▄█▄█ █",
|
|
" █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ █▄█▄▄▄█ ",
|
|
},
|
|
|
|
buttons = {
|
|
{ " Find File", "Spc f f", "Telescope find_files" },
|
|
{ " Recent Files", "Spc f o", "Telescope oldfiles" },
|
|
{ " Find Word", "Spc f w", "Telescope live_grep" },
|
|
{ " Bookmarks", "Spc b m", "Telescope marks" },
|
|
{ " Themes", "Spc t f", "Telescope themes" },
|
|
},
|
|
},
|
|
}
|
|
|
|
M.plugins = {}
|
|
|
|
-- these are default mappings, check core.mappings for table structure
|
|
M.mappings = require "core.mappings"
|
|
|
|
return M
|