style: updated formatting
This commit is contained in:
@@ -1,34 +1,35 @@
|
||||
return {
|
||||
"goolord/alpha-nvim",
|
||||
event = "VimEnter",
|
||||
'goolord/alpha-nvim',
|
||||
event = 'VimEnter',
|
||||
|
||||
config = function()
|
||||
local alpha = require("alpha")
|
||||
local dashboard = require("alpha.themes.dashboard")
|
||||
local alpha = require('alpha')
|
||||
local dashboard = require('alpha.themes.dashboard')
|
||||
|
||||
dashboard.section.header.val = {
|
||||
" @@@@@@@ @@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@ @@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@ ",
|
||||
"@@@@@@@@ @@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@@ ",
|
||||
"!@@ @@! @@@@ @@! @@@ @@! @@! @@! @@@ @@! @@! @@@ @@! @@! @@@ ",
|
||||
"!@! !@! @!@!@ !@! @!@ !@! !@! !@! @!@ !@! !@! @!@ !@! !@! @!@ ",
|
||||
"!@! @!@ @! !@! @!@ !@! @!!!:! @!!!:! @!@!@!@! @!! @!@!@!@! @!!!:! @!@!!@! ",
|
||||
"!!! !@!!! !!! !@! !!! !!!!!: !!!!!: !!!@!!!! !!! !!!@!!!! !!!!!: !!@!@! ",
|
||||
":!! !!:! !!! !!: !!! !!: !!: !!: !!! !!: !!: !!! !!: !!: :!! ",
|
||||
":!: :!: !:! :!: !:! :!: :!: :!: !:! :!: :!: !:! :!: :!: !:! ",
|
||||
" ::: ::: ::::::: :: :::: :: :: :::: :: :: ::: :: :: ::: :: :::: :: ::: ",
|
||||
" :: :: : : : : : :: : : : :: :: : : : : : : : : : :: :: : : : ",
|
||||
" ",
|
||||
' @@@@@@@ @@@@@@@@ @@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@ @@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@ ',
|
||||
'@@@@@@@@ @@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@@ ',
|
||||
'!@@ @@! @@@@ @@! @@@ @@! @@! @@! @@@ @@! @@! @@@ @@! @@! @@@ ',
|
||||
'!@! !@! @!@!@ !@! @!@ !@! !@! !@! @!@ !@! !@! @!@ !@! !@! @!@ ',
|
||||
'!@! @!@ @! !@! @!@ !@! @!!!:! @!!!:! @!@!@!@! @!! @!@!@!@! @!!!:! @!@!!@! ',
|
||||
'!!! !@!!! !!! !@! !!! !!!!!: !!!!!: !!!@!!!! !!! !!!@!!!! !!!!!: !!@!@! ',
|
||||
':!! !!:! !!! !!: !!! !!: !!: !!: !!! !!: !!: !!! !!: !!: :!! ',
|
||||
':!: :!: !:! :!: !:! :!: :!: :!: !:! :!: :!: !:! :!: :!: !:! ',
|
||||
' ::: ::: ::::::: :: :::: :: :: :::: :: :: ::: :: :: ::: :: :::: :: ::: ',
|
||||
' :: :: : : : : : :: : : : :: :: : : : : : : : : : :: :: : : : ',
|
||||
' ',
|
||||
' [danesi.dev] ',
|
||||
}
|
||||
|
||||
dashboard.section.buttons.val = {
|
||||
dashboard.button("n", " > New File", "<cmd>ene<CR>"),
|
||||
dashboard.button("e", " > Toggle file explorer", "<cmd>NvimTreeToggle<CR>"),
|
||||
dashboard.button("o", " > Recent files", "<cmd>Telescope oldfiles<cr>"),
|
||||
dashboard.button("f", " > Find File", "<cmd>Telescope find_files<CR>"),
|
||||
dashboard.button("s", " > Find Word", "<cmd>Telescope live_grep<CR>"),
|
||||
dashboard.button("r", " > Open last session", "<cmd>SessionRestore<CR>"),
|
||||
dashboard.button("R", " > Restore a Previous Session", "<cmd>Telescope session-lens<CR>"),
|
||||
dashboard.button("q", " > Quit NVIM", "<cmd>qa<CR>"),
|
||||
dashboard.button('n', ' > New File', '<cmd>ene<CR>'),
|
||||
dashboard.button('e', ' > Toggle file explorer', '<cmd>NvimTreeToggle<CR>'),
|
||||
dashboard.button('o', ' > Recent files', '<cmd>Telescope oldfiles<cr>'),
|
||||
dashboard.button('f', ' > Find File', '<cmd>Telescope find_files<CR>'),
|
||||
dashboard.button('s', ' > Find Word', '<cmd>Telescope live_grep<CR>'),
|
||||
dashboard.button('r', ' > Open last session', '<cmd>SessionRestore<CR>'),
|
||||
dashboard.button('R', ' > Restore a Previous Session', '<cmd>Telescope session-lens<CR>'),
|
||||
dashboard.button('q', ' > Quit NVIM', '<cmd>qa<CR>'),
|
||||
}
|
||||
|
||||
alpha.setup(dashboard.opts)
|
||||
|
||||
Reference in New Issue
Block a user