diff --git a/home/programs/nvim/plugins/neorg.nix b/home/programs/nvim/plugins/neorg.nix index f40554a..4d2f6d2 100644 --- a/home/programs/nvim/plugins/neorg.nix +++ b/home/programs/nvim/plugins/neorg.nix @@ -12,7 +12,21 @@ "core.concealer" = { config.folds = false; }; "core.export" = { __empty = null; }; "core.ui.calendar" = { __empty = null; }; + "core.integrations.telescope" = { __empty = null; }; }; }; }; + + programs.nixvim.keymaps = [ + { + key = "nh"; + action = "Telescope neorg search_headings"; + options.desc = "Neorg Search Headings"; + } + { + key = "nf"; + action = "Telescope neorg find_norg_files"; + options.desc = "Neorg Search Files"; + } + ]; }