add startup dashboard

This commit is contained in:
Roel de Cort 2024-05-09 01:34:33 +02:00
parent 2b46577f1f
commit 47a18ff34c

View file

@ -0,0 +1,75 @@
{
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"
];
};
}