diff options
Diffstat (limited to '.vim/after/plugin/lsp.vim')
-rw-r--r-- | .vim/after/plugin/lsp.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.vim/after/plugin/lsp.vim b/.vim/after/plugin/lsp.vim index be41ceb..6641005 100644 --- a/.vim/after/plugin/lsp.vim +++ b/.vim/after/plugin/lsp.vim @@ -57,6 +57,15 @@ if executable('godot') \ }) endif +if executable('noteutil') + au User lsp_setup + \ call lsp#register_server({ + \ 'name': 'noteutil', + \ 'cmd': {server_info->['noteutil', 'server', '--lsp']}, + \ 'allowlist': ['markdown'] + \ }) +endif + " https://github.com/mickael-menu/zk " if executable('zk') " au User lsp_setup call lsp#register_server({ |