From e068db6779a6b5c7defe34c086ce91a48e92d254 Mon Sep 17 00:00:00 2001 From: frosty Date: Sun, 25 Aug 2024 02:10:58 -0400 Subject: [PATCH] delete alpha --- lua/frosty/plugins/alpha.lua | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 lua/frosty/plugins/alpha.lua diff --git a/lua/frosty/plugins/alpha.lua b/lua/frosty/plugins/alpha.lua deleted file mode 100644 index 1440e7a..0000000 --- a/lua/frosty/plugins/alpha.lua +++ /dev/null @@ -1,20 +0,0 @@ -return { - 'goolord/alpha-nvim', - dependencies = { 'nvim-lua/plenary.nvim' }, - config = function() - local alpha = require('alpha') - local dashboard = require('alpha.themes.dashboard') - - dashboard.section.buttons.val = { - dashboard.button('SPC p f', 'Find files'), - dashboard.button('SPC p o', 'Recent files'), - dashboard.button('SPC p e', 'File explorer'), - dashboard.button('SPC p g', 'File grep'), - dashboard.button('SPC l', 'Lazy'), - dashboard.button('Z Q', 'Quit') - } - - alpha.setup(dashboard.opts) - vim.cmd('autocmd FileType alpha setlocal nofoldenable') - end -}