Switch from dashboard to alpha, add project.nvim telescope plugin

This commit is contained in:
Marko Korhonen 2023-11-25 15:58:35 +02:00
parent 6afe158c36
commit e2cc5c3094
4 changed files with 24 additions and 33 deletions

View file

@ -0,0 +1,10 @@
-- Startup dashboard
--- @type LazyPluginSpec
return {
"goolord/alpha-nvim",
config = function()
local alpha = require("alpha")
local theta = require("alpha.themes.theta")
alpha.setup(theta.config)
end,
}