|
o = { |
|
name = "obsidian", |
|
s = { "<cmd>ObsidianQuickSwitch<cr>", "QuickSwitch"}, |
|
} |
|
}, { |
|
prefix = "<localleader>" |
The issue here is once the plugin is loaded all other buffers - even those not in obsidian vault have this key combination mapped to them. Not a big deal but ideally it would just be for files that are not 'markdown' but also part the vault.
Setting it to just the local buffer means that it won't work if another obsidian note is opened.
dotfiles/.config/nvim/lua/plugins/notes.lua
Lines 25 to 30 in e6b6f48
The issue here is once the plugin is loaded all other buffers - even those not in obsidian vault have this key combination mapped to them. Not a big deal but ideally it would just be for files that are not 'markdown' but also part the vault.
Setting it to just the local buffer means that it won't work if another obsidian note is opened.