remove dashboard

This commit is contained in:
Charlotte 🦝 Delenk 2022-08-10 10:17:39 +01:00
parent 9d49af27ff
commit 070c8df044
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -1,53 +0,0 @@
{pkgs, ...}: {
vim.g = {
dashboard_custom_footer = [
"It's pretty hard to tell what does bring happiness; poverty and wealth"
"have both failed."
" -- Kim Hubbard"
];
dashboard_custom_header = [
""
""
""
""
""
""
""
""
""
""
""
""
""
""
""
];
dashboard_enable_session = false;
dashboard_default_executive = "telescope";
dashboard_custom_section = {
"1_oldfiles" = {
description = [" Open History -"];
command = "Telescope oldfiles";
};
"2_find_files" = {
description = [" Find File SPC f o"];
command = "Telescope find_files";
};
"3_new_file" = {
description = [" New File -"];
command = "enew";
};
"4_lazygit" = {
description = [" lazygit SPC g g"];
command = "LazyGit";
};
"5_live_grep" = {
description = [" Live Grep SPC f /"];
command = "Telescope live_grep";
};
};
};
output.plugins = with pkgs.vimPlugins; [dashboard-nvim];
}