Run `nix fmt` at the root of the repository to format all files. I've done this on my fork and this will help me merge your changes later without having to deal with un-formatted files.
88 lines
3.1 KiB
Nix
88 lines
3.1 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"
|
|
];
|
|
};
|
|
}
|