nixvim/config/plugins/ui/startup.nix
Lander Van den Bulcke f5e3901c08
chore: update banner
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-28 00:19:26 +02:00

88 lines
3 KiB
Nix

{
plugins.startup = {
enable = true;
colors = {
background = "#ffffff";
foldedSection = "#ffffff";
};
sections = {
header = {
type = "text";
oldfilesDirectory = false;
align = "center";
foldSection = false;
title = "Header";
margin = 5;
content = [
" "
" "
" "
" "
" "
" "
];
highlight = "Statement";
defaultColor = "";
oldfilesAmount = 0;
};
body = {
type = "mapping";
oldfilesDirectory = false;
align = "center";
foldSection = false;
title = "Menu";
margin = 5;
content = [
[
" Find File"
"Telescope find_files"
"ff"
]
[
"󰍉 Find Word"
"Telescope live_grep"
"fr"
]
[
" Recent Files"
"Telescope oldfiles"
"fg"
]
[
" File Browser"
"Telescope file_browser"
"fe"
]
[
" Copilot Chat"
"CopilotChat"
"ct"
]
[
"󰧑 SecondBrain"
"edit ~/projects/personal/SecondBrain"
"sb"
]
];
highlight = "string";
defaultColor = "";
oldfilesAmount = 0;
};
};
options = {
paddings = [
1
3
];
};
parts = [
"header"
"body"
];
};
}