feat: personalized nvim alpha a bit more
parent
6e81da9740
commit
afe7d7cb08
|
@ -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
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
return {
|
||||
'nvim-telescope/telescope.nvim',
|
||||
cmd = "Telescope",
|
||||
dependencies = {
|
||||
{
|
||||
'nvim-telescope/telescope-fzf-native.nvim',
|
||||
|
|
Loading…
Reference in New Issue