From 50306b2f66779fae223b5c965304c9b7a7ff3e59 Mon Sep 17 00:00:00 2001 From: Vaclav Uruba Date: Thu, 22 May 2025 17:44:19 -0600 Subject: [PATCH] Remove alpha-nvim --- .../nvim/lua/lazy-plugins/ui-alpha.lua | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 nvim/.config/nvim/lua/lazy-plugins/ui-alpha.lua diff --git a/nvim/.config/nvim/lua/lazy-plugins/ui-alpha.lua b/nvim/.config/nvim/lua/lazy-plugins/ui-alpha.lua deleted file mode 100644 index fc4cee6..0000000 --- a/nvim/.config/nvim/lua/lazy-plugins/ui-alpha.lua +++ /dev/null @@ -1,38 +0,0 @@ --- Alpha (start screen/dashboard) -return { - "goolord/alpha-nvim", - dependencies = { "nvim-tree/nvim-web-devicons" }, - event = "VimEnter", - config = function() - local alpha = require("alpha") - local dashboard = require("alpha.themes.dashboard") - - -- Set header - dashboard.section.header.val = { - " ", - " ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ", - " ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ", - " ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ", - " ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ", - " ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ", - " ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ", - " ", - } - - -- Set menu - dashboard.section.buttons.val = { - dashboard.button("e", " > New File", "ene"), - dashboard.button("SPC ee", " > Toggle file explorer", "NvimTreeToggle"), - dashboard.button("SPC ff", "󰱼 > Find File", "Telescope find_files"), - dashboard.button("SPC fs", " > Find Word", "Telescope live_grep"), - dashboard.button("SPC wr", "󰁯 > Restore Session For Current Directory", "SessionRestore"), - dashboard.button("q", " > Quit NVIM", "qa"), - } - - -- Send config to alpha - alpha.setup(dashboard.opts) - - -- Disable folding on alpha buffer - vim.cmd([[autocmd FileType alpha setlocal nofoldenable]]) - end, -}