75 lines
2.9 KiB
Nix
75 lines
2.9 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"
|
|
"<leader>ff"
|
|
]
|
|
[
|
|
" Find Word"
|
|
"Telescope live_grep"
|
|
"<leader>fr"
|
|
]
|
|
[
|
|
" Recent Files"
|
|
"Telescope oldfiles"
|
|
"<leader>fg"
|
|
]
|
|
[
|
|
" File Browser"
|
|
"Telescope file_browser"
|
|
"<leader>fe"
|
|
]
|
|
];
|
|
highlight = "string";
|
|
defaultColor = "";
|
|
oldfilesAmount = 0;
|
|
};
|
|
};
|
|
|
|
options = {
|
|
paddings = [1 3];
|
|
};
|
|
|
|
parts = [
|
|
"header"
|
|
"body"
|
|
];
|
|
};
|
|
}
|