diff options
Diffstat (limited to 'lua/config_custom_dashboard.lua')
-rw-r--r-- | lua/config_custom_dashboard.lua | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lua/config_custom_dashboard.lua b/lua/config_custom_dashboard.lua new file mode 100644 index 0000000..927b2c5 --- /dev/null +++ b/lua/config_custom_dashboard.lua @@ -0,0 +1,38 @@ +local custom_header = { +[[ ]], +[[ ]], +[[ ▀████▀▄▄ ▄█ ]], +[[ █▀ ▀▀▄▄▄▄▄ ▄▄▀▀█ ]], +[[ ▄ █ ▀▀▀▀▄ ▄▀ ]], +[[ ▄▀ ▀▄ ▀▄ ▀▄▀ ]], +[[ ▄▀ █ █▀ ▄█▀▄ ▄█ ]], +[[ ▀▄ ▀▄ █ ▀██▀ ██▄█ ]], +[[ ▀▄ ▄▀ █ ▄██▄ ▄ ▄ ▀▀ █ ]], +[[ █ ▄▀ █ ▀██▀ ▀▀ ▀▀ ▄▀ ]], +[[ █ █ █ ▄▄ ▄▀ ]], +[[ ]], +} + +local custom_center = { + {icon = "", desc = " Find file", action = "Telescope find_files"}, + {icon = "", desc = " Search Text", action = "Telescope live_grep"}, + {icon = "", desc = " Recent Files", action = "Telescope oldfiles"}, + {icon = "", desc = " Telescope", action = "Telescope"}, + {icon = "", desc = " Terminal", action = "ToggleTerm"}, + {icon = "", desc = " Help", action = "Telescope help_tags"} +} + +require("dashboard").setup { + theme = "doom", + config = { + header = custom_header, + center = custom_center, + footer = {"I spend to much time doing this )-:"}, + }, + + hide = { + statusline = true, + tabline = true, + winbar = true + }, +} |