Updated Neovim Plugins as well as cleaned up aerospace config and sketbar config and added fastfetch config
26 lines
880 B
Lua
26 lines
880 B
Lua
return {
|
|
"goolord/alpha-nvim",
|
|
event = "VimEnter",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
config = function()
|
|
local alpha = require("alpha")
|
|
local dashboard = require("alpha.themes.dashboard")
|
|
|
|
-- Set menu
|
|
dashboard.section.buttons.val = {
|
|
dashboard.button("e", " > New File", "<cmd>ene<CR>"),
|
|
dashboard.button("SPC ee", " > Toggle file explorer", "<cmd>Oil<CR>"),
|
|
dashboard.button("SPC ff", " > Find File", "<cmd>Telescope find_files<CR>"),
|
|
dashboard.button("SPC fs", " > Find Word", "<cmd>Telescope live_grep<CR>"),
|
|
dashboard.button("SPC sr", " > Resore Session", "<cmd>SessionRestore<CR>"),
|
|
dashboard.button("q", " > Quit NVIM", "<cmd>qa<CR>"),
|
|
}
|
|
|
|
-- Send config to alpha
|
|
alpha.setup(dashboard.opts)
|
|
|
|
-- Disable folding on alpha buffer
|
|
vim.cmd([[autocmd FileType alpha setlocal nofoldenable]])
|
|
end,
|
|
}
|