add more neovim plugins
This commit is contained in:
parent
29f6d0a2b9
commit
bbf6641115
10 changed files with 107 additions and 8 deletions
26
.config/nvim/lua/klowner/plugins/alpha.lua
Normal file
26
.config/nvim/lua/klowner/plugins/alpha.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
"goolord/alpha-nvim",
|
||||
event = "VimEnter",
|
||||
config = function ()
|
||||
local alpha = require('alpha')
|
||||
local dashboard = require('alpha.themes.dashboard')
|
||||
|
||||
dashboard.section.header.val = {
|
||||
" ▜█▙ ",
|
||||
" █▄ ▄█▄ ",
|
||||
" ████▄ ▄████▄ ",
|
||||
" ██▀█████▀▀███▄ ",
|
||||
" ██ ▀█▀ ▀███▄ ",
|
||||
"▄▄▄██ █████████▄▀███▄▄▄▄",
|
||||
"▀███ ███ ███ ▀█████▀",
|
||||
" █████████▀ ▄▄▄ ",
|
||||
" ███▀██▄ ▀▀███ ",
|
||||
" ███ ▀██▄▄ ▄███ ",
|
||||
" ▀▀ ▀██████▀ ",
|
||||
" ▜█▙ ",
|
||||
}
|
||||
alpha.setup(dashboard.opts)
|
||||
-- Disable folding on alpha buffer
|
||||
vim.cmd([[autocmd FileType alpha setlocal nofoldenable]])
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue