Skip to content

Commit d6490d5

Browse files
committed
added documentation
1 parent 726bf89 commit d6490d5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ The only **required** plugin dependency is [plenary.nvim](https://github.com/nvi
201201
- **[recommended]** [nvim-telescope/telescope.nvim](https://github.com/nvim-telescope/telescope.nvim): for search and quick-switch functionality.
202202
- [Mini.Pick](https://github.com/echasnovski/mini.pick) from the mini.nvim library: an alternative to telescope for search and quick-switch functionality.
203203
- [ibhagwan/fzf-lua](https://github.com/ibhagwan/fzf-lua): another alternative to telescope for search and quick-switch functionality.
204+
- [Snacks.Picker](https://github.com/folke/snacks.nvim/blob/main/docs/picker.md) from the snacks.nvim library: an alternative to mini and telescope for search and quick-switch functionality.
204205

205206
**Syntax highlighting:**
206207

@@ -412,7 +413,7 @@ This is a complete list of all of the options that can be passed to `require("ob
412413
open_app_foreground = false,
413414

414415
picker = {
415-
-- Set your preferred picker. Can be one of 'telescope.nvim', 'fzf-lua', or 'mini.pick'.
416+
-- Set your preferred picker. Can be one of 'telescope.nvim', 'fzf-lua', 'mini.pick' or 'snacks.pick'.
416417
name = "telescope.nvim",
417418
-- Optional, configure key mappings for the picker. These are the defaults.
418419
-- Not all pickers support all mappings.

doc/obsidian.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ dependencies that enhance the obsidian.nvim experience.
252252
- **[recommended]** nvim-telescope/telescope.nvim <https://github.com/nvim-telescope/telescope.nvim>: for search and quick-switch functionality.
253253
- Mini.Pick <https://github.com/echasnovski/mini.pick> from the mini.nvim library: an alternative to telescope for search and quick-switch functionality.
254254
- ibhagwan/fzf-lua <https://github.com/ibhagwan/fzf-lua>: another alternative to telescope for search and quick-switch functionality.
255+
- Snacks.Pick <https://github.com/folke/snacks.nvim/blob/main/docs/picker.md>: another alternative to telescope for search and quick-switch functionality.
255256

256257
**Syntax highlighting:**
257258

@@ -468,7 +469,7 @@ carefully and customize it to your needs:
468469
open_app_foreground = false,
469470

470471
picker = {
471-
-- Set your preferred picker. Can be one of 'telescope.nvim', 'fzf-lua', or 'mini.pick'.
472+
-- Set your preferred picker. Can be one of 'telescope.nvim', 'fzf-lua', 'mini.pick' or 'snacks.pick'.
472473
name = "telescope.nvim",
473474
-- Optional, configure key mappings for the picker. These are the defaults.
474475
-- Not all pickers support all mappings.

lua/obsidian/commands/debug.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ return function(client, data)
5151
end
5252

5353
log.lazy_info "Dependencies:"
54-
for _, plugin in ipairs { "plenary.nvim", "nvim-cmp", "telescope.nvim", "fzf-lua", "mini.pick" } do
54+
for _, plugin in ipairs { "plenary.nvim", "nvim-cmp", "telescope.nvim", "fzf-lua", "mini.pick", "snacks.pick" } do
5555
local plugin_info = util.get_plugin_info(plugin)
5656
if plugin_info ~= nil then
5757
log.lazy_info(" ✓ %s: %s", plugin, plugin_info.commit or "unknown")

0 commit comments

Comments
 (0)