|
|
|
@ -152,4 +152,47 @@ return {
|
|
|
|
|
})
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
"echasnovski/mini.starter",
|
|
|
|
|
enabled = false,
|
|
|
|
|
config = function ()
|
|
|
|
|
require('mini.starter').setup({
|
|
|
|
|
-- Define the header
|
|
|
|
|
header = table.concat({
|
|
|
|
|
"================= =============== =============== ======== ========",
|
|
|
|
|
"\\\\ . . . . . . .\\\\ //. . . . . . .\\\\ //. . . . . . .\\\\ \\\\. . .\\\\// . . //",
|
|
|
|
|
"||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\\/ . . .||",
|
|
|
|
|
"|| . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||",
|
|
|
|
|
"||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||",
|
|
|
|
|
"|| . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\\ . . . . ||",
|
|
|
|
|
"||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\\_ . .|. .||",
|
|
|
|
|
"|| . _|| || || || || ||_ . || || . _|| || || || |\\ `-_/| . ||",
|
|
|
|
|
"||_-' || .|/ || || \\|. || `-_|| ||_-' || .|/ || || | \\ / |-_.||",
|
|
|
|
|
"|| ||_-' || || `-_|| || || ||_-' || || | \\ / | `||",
|
|
|
|
|
"|| `' || || `' || || `' || || | \\ / | ||",
|
|
|
|
|
"|| .===' `===. .==='.`===. .===' /==. | \\/ | ||",
|
|
|
|
|
"|| .==' \\_|-_ `===. .===' _|_ `===. .===' _-|/ `== \\/ | ||",
|
|
|
|
|
"|| .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \\/ | ||",
|
|
|
|
|
"|| .==' _-' `-__\\._-' `-_./__-' `' |. /| | ||",
|
|
|
|
|
"||.==' _-' `' | /==.||",
|
|
|
|
|
"==' _-' N E O V I M \\/ `==",
|
|
|
|
|
"\\ _-' `-_ /",
|
|
|
|
|
" `'' ``'",
|
|
|
|
|
}, "\n"),
|
|
|
|
|
|
|
|
|
|
-- Define the items to display in the starter
|
|
|
|
|
items = {
|
|
|
|
|
{ name = 'New File', action = 'enew', section = 'Actions' },
|
|
|
|
|
{ name = 'Open File', action = 'Telescope find_files', section = 'Actions' },
|
|
|
|
|
{ name = 'Recent Files', action = 'Telescope oldfiles', section = 'Actions' },
|
|
|
|
|
{ name = 'Config', action = 'edit ~/.config/nvim/init.lua', section = 'Config' },
|
|
|
|
|
{ name = 'Quit', action = 'qall', section = 'Actions' },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
-- Define the footer
|
|
|
|
|
footer = os.date("%Y-%m-%d %H:%M:%S"),
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|