feat: personalized nvim alpha a bit more

main
Ricard Illa 2023-08-02 17:14:16 +02:00
parent 6e81da9740
commit afe7d7cb08
Signed by: rilla
GPG Key ID: 525307BD467E4205
2 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,19 @@ return {
[[│││├┤ │ │└┐┌┘││││]],
[[┘└┘└─┘└─┘ └┘ ┴┴ ┴]],
}
dashboard.section.buttons.val = {
dashboard.button("e", " New file", ":<cmd>ene<CR>"),
dashboard.button(",ff", "󰈞 Find file", "<cmd>Telescope find_files<CR>"),
dashboard.button(",fg", "󰈬 Find word", "<cmd>Telescope live_grep<CR>"),
dashboard.button(",zn", "󱞁 Write note", "<cmd>Telekasten new_note<CR>"),
dashboard.button(",zf", "󱙓 Find note", "<cmd>Telekasten find_notes<CR>"),
dashboard.button("q", "󰅚 Quit", ":qa<CR>"),
}
alpha.setup(dashboard.config)
end
}
-- 󰊄 Recently opened files SPC f h
--  Frecency/MRU SPC f r
--  Jump to bookmarks SPC f m
--  Open last session SPC s l

View File

@ -1,5 +1,6 @@
return {
'nvim-telescope/telescope.nvim',
cmd = "Telescope",
dependencies = {
{
'nvim-telescope/telescope-fzf-native.nvim',