AutoYADM commit: 2025-01-19 15:45:02
This commit is contained in:
parent
6872b1ed4a
commit
e1cee8bfec
1 changed files with 9 additions and 1 deletions
|
@ -26,13 +26,21 @@ return {
|
||||||
---@type snacks.dashboard.Item[]
|
---@type snacks.dashboard.Item[]
|
||||||
keys = {
|
keys = {
|
||||||
{ icon = " ", key = "n", desc = "New File", action = ":ene | startinsert" },
|
{ icon = " ", key = "n", desc = "New File", action = ":ene | startinsert" },
|
||||||
|
{
|
||||||
|
action = function()
|
||||||
|
require("telescope").extensions.orgmode.search_headings()
|
||||||
|
end,
|
||||||
|
desc = "Org",
|
||||||
|
icon = " ",
|
||||||
|
key = "o",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
action = function()
|
action = function()
|
||||||
vim.api.nvim_input("<CMD>ObsidianQuickSwitch<CR>")
|
vim.api.nvim_input("<CMD>ObsidianQuickSwitch<CR>")
|
||||||
end,
|
end,
|
||||||
desc = "Obsidian",
|
desc = "Obsidian",
|
||||||
icon = " ",
|
icon = " ",
|
||||||
key = "o",
|
key = "O",
|
||||||
},
|
},
|
||||||
-- { icon = " ", key = "f", desc = "Find File", action = ":lua Snacks.dashboard.pick('files')" },
|
-- { icon = " ", key = "f", desc = "Find File", action = ":lua Snacks.dashboard.pick('files')" },
|
||||||
-- { icon = " ", key = "/", desc = "Find Text", action = ":lua Snacks.dashboard.pick('live_grep')" },
|
-- { icon = " ", key = "/", desc = "Find Text", action = ":lua Snacks.dashboard.pick('live_grep')" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue