Updated Lualine with mode icon, moved git diff and added a icon displaying Github copilot status. Changed setting to default yank to system clipboard Updated startup dashboard
85 lines
3 KiB
Nix
85 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"
|
|
];
|
|
};
|
|
}
|