new default nvim config based on LazyVim

This commit is contained in:
Yevhenii Moruhyi 2023-05-19 19:23:21 -04:00
parent f6f507c71a
commit f6873678e2
6 changed files with 124 additions and 3 deletions

20
lua/plugins/logo.lua Normal file
View file

@ -0,0 +1,20 @@
-- dashboard
return {
"goolord/alpha-nvim",
event = "VimEnter",
opts = function()
local dashboard = require("alpha.themes.dashboard")
local logo = [[
Z
Z
z
z
[@ymoruhyi]
]]
dashboard.section.header.val = vim.split(logo, "\n")
end,
}