mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-29 02:53:50 -03:00
chore: organize ui shit in its own folder
This commit is contained in:
parent
f6e7ce77d8
commit
9569774c7b
10 changed files with 45 additions and 8 deletions
14
lua/config/plugins/ui/alpha.lua
Normal file
14
lua/config/plugins/ui/alpha.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
local M = {
|
||||
"goolord/alpha-nvim",
|
||||
}
|
||||
|
||||
M.config = function()
|
||||
local startify = require("alpha.themes.startify")
|
||||
startify.section.bottom_buttons.val = {
|
||||
startify.button("e", "New file", "<cmd>ene <CR>"),
|
||||
startify.button("q", "Quit", "<cmd>q <CR>"),
|
||||
}
|
||||
require("alpha").setup(startify.config)
|
||||
end
|
||||
|
||||
return M
|
Loading…
Add table
Add a link
Reference in a new issue