diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json index 7969bcf..f5613cc 100644 --- a/.config/nvim/lazy-lock.json +++ b/.config/nvim/lazy-lock.json @@ -53,6 +53,7 @@ "okai": { "branch": "main", "commit": "b028c2916c39b1c4ad53756d262f9d0576edac87" }, "overseer.nvim": { "branch": "master", "commit": "433ae548434d83ab3c6afe6afc549832f7dd56f1" }, "plenary.nvim": { "branch": "master", "commit": "a3e3bc82a3f95c5ed0d7201546d5d2c19b20d683" }, + "project.nvim": { "branch": "main", "commit": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb" }, "spaceduck": { "branch": "main", "commit": "350491f19343b24fa85809242089caa02d4dadce" }, "sqlite.lua": { "branch": "master", "commit": "d0ffd703b56d090d213b497ed4eb840495f14a11" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "9ef21b2e6bb6ebeaf349a0781745549bbb870d27" }, diff --git a/.config/nvim/lua/plugins/alpha.lua b/.config/nvim/lua/plugins/alpha.lua index ffef9d4..e1b9532 100644 --- a/.config/nvim/lua/plugins/alpha.lua +++ b/.config/nvim/lua/plugins/alpha.lua @@ -53,6 +53,11 @@ return { dashboard.button('w', ' > Find file', 'cd ' .. find_file_path .. ' | Telescope find_files'), dashboard.button('r', ' > Recent', 'Telescope oldfiles'), dashboard.button('c', ' > Configuration', 'e $MYVIMRC | cd %:p:h'), + dashboard.button( + 's', + '󱎠 > Last Session', + 'lua require("auto-session.session-lens.actions").alternate_session()' + ), dashboard.button('q', '󰈆 > Quit NVIM', 'qa'), } diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 86a6cec..6e95e21 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -65,6 +65,7 @@ return { }, }, }) + telescope.load_extension('ui-select') telescope.load_extension('fzf') end,