1
0
mirror of https://github.com/pratiktri/dotfiles.git synced 2026-05-07 03:53:41 +05:30

feat(neovim): Markdown-oxide configured

- Makes the Obsidian-like markdown work in Neovim
This commit is contained in:
Pratik Tripathy
2025-09-01 11:57:05 +05:30
parent 3be53f130a
commit 0373234cc9
2 changed files with 35 additions and 0 deletions
@@ -0,0 +1,14 @@
return {
cmd = { "markdown-oxide" },
filetypes = { "markdown" },
root_dir = function()
return vim.fn.getcwd()
end,
settings = {
workspace = {
didChangeWatchedFiles = {
dynamicRegistration = true,
},
},
},
}