AutoYADM commit: 2025-01-25 16:30:03
This commit is contained in:
parent
c559a15a8d
commit
eb000f4238
2 changed files with 36 additions and 0 deletions
35
.config/nvim/lua/plugins/fzf-org.lua
Normal file
35
.config/nvim/lua/plugins/fzf-org.lua
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
return {
|
||||||
|
"0xzhzh/fzf-org.nvim",
|
||||||
|
lazy = false, -- lazy loading is handled internally
|
||||||
|
dependencies = {
|
||||||
|
"ibhagwan/fzf-lua",
|
||||||
|
"nvim-orgmode/orgmode",
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
-- example keybindings
|
||||||
|
{
|
||||||
|
"<leader>og",
|
||||||
|
function()
|
||||||
|
require("fzf-org").orgmode()
|
||||||
|
end,
|
||||||
|
desc = "org-browse",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>of",
|
||||||
|
function()
|
||||||
|
require("fzf-org").files()
|
||||||
|
end,
|
||||||
|
desc = "org-files",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>or",
|
||||||
|
function()
|
||||||
|
require("fzf-org").refile_to_file()
|
||||||
|
end,
|
||||||
|
desc = "org-refile",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
prompt = "Org > ",
|
||||||
|
},
|
||||||
|
}
|
|
@ -81,6 +81,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-orgmode/telescope-orgmode.nvim",
|
"nvim-orgmode/telescope-orgmode.nvim",
|
||||||
|
enabled = false,
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-orgmode/orgmode",
|
"nvim-orgmode/orgmode",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue