diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/markdown_oxide.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/markdown_oxide.lua b/lua/lspconfig/server_configurations/markdown_oxide.lua new file mode 100644 index 00000000..d3fb74f3 --- /dev/null +++ b/lua/lspconfig/server_configurations/markdown_oxide.lua @@ -0,0 +1,19 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + root_dir = util.find_git_ancestor, + single_file_support = true, + filetypes = { 'markdown' }, + cmd = { 'markdown-oxide' }, + }, + docs = { + description = [[ +https://github.com/Feel-ix-343/markdown-oxide + +Markdown language server with advanced linking support made to be completely compatible with Obsidian; An Obsidian Language Server + +Check the readme to see how to get nvim-cmp properly working. + ]], + }, +} |
