obsidian-bridge.nvim
obsidian-bridge.nvim copied to clipboard
A neovim plugin used to synchronize active note and scroll position between neovim and obsidian
After running `npm install` as explained in the **README.md** file, I obtain: ```log npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-url#deprecated npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated npm WARN deprecated [email protected]:...
From the README: ```markdown Now scrolling a note in neovim should also result in scrolling in Obsidian. Note however that this only works if the note is in editing mode...
In obsidian.nvim there is the `ObsidianWorkspace` command to switch to another obsidian vault (sometimes I have also two vaults open simultaneously). For obsidian-bridge.nvim to continue functioning in the new workspace,...
When I create a new note (either from a link, or with `:ObsidianNew`, etc.) next things happen: - Obsidian switches from reading mode to edit mode. - The file is...
I noticed that the API key environment variable name isn't actually hard-coded: ```lua -- config.lua local api_key = os.getenv(M.api_key_env_var_name) ``` I think it would be nice if the currently required...
I might add this myself. My use case is for this is I use QuickAdd that runs a template then opens a file. I then want to open that file...
[Snacks Picker](https://github.com/folke/snacks.nvim/blob/main/docs/picker.md) and [mini.pick](https://github.com/echasnovski/mini.pick) are becoming popular options nowadays. Many plugins offer support for them already ([zk-nvim](https://github.com/zk-org/zk-nvim) would be one example). Would be really nice to see them supported in...