blob: d3fb74f34ea6ecb4415a5ca8cba8a6ebfd33e8d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.
]],
},
}
|