64 lines
3.0 KiB
Lua
64 lines
3.0 KiB
Lua
---@type ChadrcConfig
|
|
local M = {}
|
|
|
|
-- Path to overriding theme and highlights files
|
|
local highlights = require "custom.highlights"
|
|
|
|
M.ui = {
|
|
theme = "chadracula",
|
|
theme_toggle = { "kanagawa", "chadracula" },
|
|
|
|
hl_override = highlights.override,
|
|
hl_add = highlights.add,
|
|
lsp_semantic_tokens = true,
|
|
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 = {
|
|
show_numbers = true,
|
|
enabled = true,
|
|
lazyload = true,
|
|
overriden_modules = nil,
|
|
},
|
|
-- nvdash (dashboard)
|
|
nvdash = {
|
|
load_on_startup = true,
|
|
header = {
|
|
" ",
|
|
" █ ████████ █████ ███████ ████ ",
|
|
" ███ ██████ █████ █████████ ██████ ",
|
|
" █████ ██████████████████████ ████ ███████████████ ",
|
|
" ██ ██ █████ █████████████ ████ ████████████████ ",
|
|
" ████ ███████████████ █████████ ████ █████ ██████ ████ ",
|
|
" ██████ ██████ ███ █████████ ████ █████ █████ ████ ",
|
|
"████████ ███████████████████ ████ ████ █████ ████ ████",
|
|
" ",
|
|
" 🛠️ Sharp tools make good work 🖥️ ",
|
|
},
|
|
|
|
buttons = {
|
|
{ " Find File", ";ff", "Telescope find_files" },
|
|
{ " Recent Files", ";fo", "Telescope oldfiles" },
|
|
{ " Find Word", ";fw", "Telescope live_grep" },
|
|
{ " Bookmarks", ";fm", "Telescope marks" },
|
|
{ " Themes", ";th", "Telescope themes" },
|
|
{ " Mappings", "<space>ch", "NvCheatsheet" },
|
|
{ " Git", "<space>gg", "LazyGit" },
|
|
{ " Files", "<F5>", "NvimTreeToggle" },
|
|
{ " Terminal", "<A-i>", "ToggleTerm direction=float" },
|
|
},
|
|
},
|
|
}
|
|
|
|
M.plugins = "custom.plugins"
|
|
|
|
-- check core.mappings for table structure
|
|
M.mappings = require "custom.mappings"
|
|
|
|
return M
|