nvim: enable nvdash, configure satatusbar

This commit is contained in:
timoxa0 2024-12-12 13:25:03 +05:00
parent 3e6fda1100
commit e407a7402d

View file

@ -3,10 +3,42 @@
---@type ChadrcConfig
local M = {}
M = {
base46 = {
theme = "catppuccin",
transparency = true
},
ui = {
statusline = {
theme = "minimal",
separator_style = "round",
order = { "mode", "file", "git", "%=", "cwd"},
}
},
nvdash = {
load_on_startup = true,
header = {
" ",
" ▄▄ ▄ ▄▄▄▄▄▄▄ ",
" ▄▀███▄ ▄██ █████▀ ",
" ██▄▀███▄ ███ ",
" ███ ▀███▄ ███ ",
" ███ ▀██ ███ ",
" ███ ▀ ███ ",
" ▀██ █████▄▀█▀▄██████▄ ",
" ▀ ▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀ ",
" ",
" ",
},
buttons = {
{ txt = " Find File", keys = "ff", cmd = "Telescope find_files" },
{ txt = " Recent Files", keys = "fo", cmd = "Telescope oldfiles" },
{ txt = "󰈭 Find Word", keys = "fw", cmd = "Telescope live_grep" },
{ txt = "󰈆 Exit", keys = ":q!", cmd = "q!" },
}
}
-- hl_override = {
-- Comment = { italic = true },