summaryrefslogtreecommitdiff
path: root/fnl/config/alpha.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-08-08 13:51:12 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-08-08 13:51:12 +0200
commit98f906b644a24dfb10b2eaa56ccc7c99c94c876f (patch)
tree99046bf5fd111dbdfbe6b4a793c57fa354af2927 /fnl/config/alpha.fnl
parent9dd308b444ede3a68a29961e956937d2ce402e45 (diff)
Add session plugin
Diffstat (limited to 'fnl/config/alpha.fnl')
-rw-r--r--fnl/config/alpha.fnl6
1 files changed, 4 insertions, 2 deletions
diff --git a/fnl/config/alpha.fnl b/fnl/config/alpha.fnl
index fcbbb8c..0f0f680 100644
--- a/fnl/config/alpha.fnl
+++ b/fnl/config/alpha.fnl
@@ -24,12 +24,14 @@
(let [dashboard (require :alpha.themes.dashboard)]
(set dashboard.section.header.val ascii-art)
(set dashboard.section.buttons.val
- [(dashboard.button :f " Find file" ":Telescope find_files <CR>")
+ [
(dashboard.button :e " New file" ":ene <BAR> startinsert <CR>")
+ (dashboard.button :f " Find file" ":Telescope find_files <CR>")
+ (dashboard.button :t " Find text" ":Telescope live_grep <CR>")
+ (dashboard.button :s " Find Session" ":SearchSession<CR>")
(dashboard.button :p " Find project" ":Telescope projects <CR>")
(dashboard.button :r " Recently used files"
":Telescope oldfiles <CR>")
- (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>")])