From 3633ac65657a4f6d1a0e3ef4fcc9d6f2d3354f6a Mon Sep 17 00:00:00 2001 From: wires Date: Fri, 7 Mar 2025 22:40:17 -0500 Subject: [PATCH] remove dashboard who likes it anyway --- lua/plugins/dashboard.lua | 57 --------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 lua/plugins/dashboard.lua diff --git a/lua/plugins/dashboard.lua b/lua/plugins/dashboard.lua deleted file mode 100644 index 3da6ee7..0000000 --- a/lua/plugins/dashboard.lua +++ /dev/null @@ -1,57 +0,0 @@ -local icons = require('utils.icons') -local g = vim.g - -return { - 'glepnir/dashboard-nvim', - config = function() - g.dashboard_default_executive = 'telescope' - - g.dashboard_session_directory = vim.fn.stdpath('data') .. '/sessions' - - g.dashboard_custom_section = { - find_file = { - description = { icons.file1 .. ' Find File ff' }, - command = 'lua require("plugins.telescope.mappings").project_files()', - }, - file_explorer = { - description = { icons.file2 .. ' File Manager ' }, - command = 'NvimTreeToggle', - }, - find_string = { - description = { icons.word .. ' Grep String fs' }, - command = 'Telescope grep_string', - }, - last_session = { - description = { icons.clock .. ' Load Session sl' }, - command = 'lua vim.cmd(":silent RestoreSession")', - }, - } - - g.dashboard_custom_footer = { '💫 github.com/CosmicNvim/CosmicNvim' } - - require('dashboard').setup({ - -- config - config = { - header = { - '', - '', - '', - '', - '', - '', - ' ██████╗ ██████╗ ███████╗███╗ ███╗██╗ ██████╗███╗ ██╗██╗ ██╗██╗███╗ ███╗', - '██╔════╝██╔═══██╗██╔════╝████╗ ████║██║██╔════╝████╗ ██║██║ ██║██║████╗ ████║', - '██║ ██║ ██║███████╗██╔████╔██║██║██║ ██╔██╗ ██║██║ ██║██║██╔████╔██║', - '██║ ██║ ██║╚════██║██║╚██╔╝██║██║██║ ██║╚██╗██║╚██╗ ██╔╝██║██║╚██╔╝██║', - '╚██████╗╚██████╔╝███████║██║ ╚═╝ ██║██║╚██████╗██║ ╚████║ ╚████╔╝ ██║██║ ╚═╝ ██║', - ' ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═════╝╚═╝ ╚═══╝ ╚═══╝ ╚═╝╚═╝ ╚═╝', - '', - '', - '', - }, - footer = { '💫 github.com/CosmicNvim/CosmicNvim' }, - }, - }) - end, - event = 'VimEnter', -}