nvim: enable nvdash, configure satatusbar
This commit is contained in:
parent
3e6fda1100
commit
e407a7402d
|
@ -3,10 +3,42 @@
|
||||||
|
|
||||||
---@type ChadrcConfig
|
---@type ChadrcConfig
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M = {
|
M = {
|
||||||
base46 = {
|
base46 = {
|
||||||
theme = "catppuccin",
|
theme = "catppuccin",
|
||||||
transparency = true
|
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 = {
|
-- hl_override = {
|
||||||
-- Comment = { italic = true },
|
-- Comment = { italic = true },
|
||||||
|
|
Loading…
Reference in a new issue