diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 23:45:09 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 23:45:09 +0200 |
commit | 4c392204be26961e49d725db2f63d598c3c1fc20 (patch) | |
tree | 1ce3d652d47e86587c9da6ebfbb545b1ee57a3c6 /fnl/config | |
parent | 85d48f74479f82abeb445bb66e6d0440fabb8daa (diff) |
fix(alpha): update table type
Diffstat (limited to 'fnl/config')
-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})))) |