nvim: enable nvdash, configure satatusbar
This commit is contained in:
parent
c8a4694063
commit
c59406dad4
|
@ -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 },
|
||||
|
|
Loading…
Reference in a new issue