From 16a0632e8e7e624c565a00be04e875924bd71225 Mon Sep 17 00:00:00 2001 From: Michael Beasley Date: Tue, 5 Nov 2024 12:24:19 -0600 Subject: [PATCH] add dashboard plugin --- lua/custom/plugins/dashboard.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/custom/plugins/dashboard.lua diff --git a/lua/custom/plugins/dashboard.lua b/lua/custom/plugins/dashboard.lua new file mode 100644 index 00000000..cdf48a47 --- /dev/null +++ b/lua/custom/plugins/dashboard.lua @@ -0,0 +1,19 @@ +return { + { + 'nvimdev/dashboard-nvim', + event = 'VimEnter', + config = function() + require('dashboard').setup { + theme = 'hyper', + config = { + week_header = { enable = true }, + footer = {}, + shortcut = { + { desc = '󰊳 Update Lazy', group = '@property', action = 'Lazy update', key = 'u' }, + }, + }, + } + end, + dependencies = { { 'nvim-tree/nvim-web-devicons' } }, + }, +}