Added nvim config

This commit is contained in:
Kyren223
2024-06-19 17:56:44 +03:00
parent aca090f814
commit 5f74606a52
30 changed files with 628 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
return {
"goolord/alpha-nvim",
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
local alpha = require("alpha")
local dashboard = require("alpha.themes.startify")
dashboard.section.header.val = {
[[ ]],
[[ ]],
[[ ]],
[[ ]],
[[  ]],
[[ ████ ██████ █████ ██ ██ ]],
[[ ███████████ █████ ███ ]],
[[ █████████ ███████████████████ ███ ███████████ ]],
[[ █████████ ███ █████████████ █████ ██████████████ ]],
[[ █████████ ██████████ █████████ █████ █████ ████ █████ ]],
[[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]],
[[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]],
[[ ]],
[[ ]],
[[ ]],
}
--[=[
dashboard.section.header.val = {
[[ ]],
[[ ]],
[[ ]],
[[ ]],
[[ ]],
[[ ████ ███ ]],
[[ █████████ ]],
[[ ██████████ ████████ ████████ ]],
[[ ██████████ ███ ███ ███ ]],
[[ ████████ ████████ ███ ███ ]],
[[ █████████ ███ ███ ███ ]],
[[ ██████ ███ █████████ ███ ███ ]],
[[ ]],
[[ ]],
[[ ]],
}
]=]
alpha.setup(dashboard.opts)
end,
}