diff options
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/config/alpha.fnl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fnl/config/alpha.fnl b/fnl/config/alpha.fnl index 686dc93..bb55784 100644 --- a/fnl/config/alpha.fnl +++ b/fnl/config/alpha.fnl @@ -27,7 +27,7 @@ (let [dashboard (require :alpha.themes.dashboard)] (do (set dashboard.section.header.val ascii-art) - (set dashboard.section.buttons.val { + (set dashboard.section.buttons.val [ (dashboard.button "f" " Find file" ":Telescope file_browser <CR>") (dashboard.button "e" " New file" ":ene <BAR> startinsert <CR>") (dashboard.button "p" " Find project" ":Telescope projects <CR>") @@ -35,8 +35,8 @@ (dashboard.button "t" " Find text" ":Telescope live_grep <CR>") (dashboard.button "c" " Configuration" ":e ~/.config/nvim/init.lua <CR>") (dashboard.button "q" " Quit Neovim" ":qa<CR>") - }) - (dashboard.section.header.opts.hl :AlphaHeader) - (dashboard.section.buttons.opts.hl :AlphaButtons) + ]) + (set dashboard.section.header.opts.hl :AlphaHeader) + (set dashboard.section.buttons.opts.hl :AlphaButtons) (set dashboard.opts.opts.noautocmd true) (alpha.setup {dashboard.opts})))) |