diff options
author | nathan11 <thenathansmithsmith@gmail.com> | 2023-07-25 00:52:07 -0600 |
---|---|---|
committer | nathan11 <thenathansmithsmith@gmail.com> | 2023-07-25 00:52:07 -0600 |
commit | 0f8c62f2d18fd86e2bad01a33e5e9beb4e2ef77b (patch) | |
tree | e098cecfe770af08bd77eda320f8a0260c3c68c6 /lua/config_custom_dashboard.lua |
first commit
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 + }, +} |