mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
feat(neovim): Markdown-oxide configured
- Makes the Obsidian-like markdown work in Neovim
This commit is contained in:
14
common/.config/nvim/lsp/markdown_oxide.lua
Normal file
14
common/.config/nvim/lsp/markdown_oxide.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
cmd = { "markdown-oxide" },
|
||||
filetypes = { "markdown" },
|
||||
root_dir = function()
|
||||
return vim.fn.getcwd()
|
||||
end,
|
||||
settings = {
|
||||
workspace = {
|
||||
didChangeWatchedFiles = {
|
||||
dynamicRegistration = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user