diff --git a/vim/plugin/newt-lsp.lua b/vim/plugin/newt-lsp.lua new file mode 100644 index 0000000..c109675 --- /dev/null +++ b/vim/plugin/newt-lsp.lua @@ -0,0 +1,7 @@ +vim.lsp.config['newt_ls'] = { + -- we'll change this to a newt-lsp wrapper later + cmd = { 'node', 'newt-vscode-lsp/dist/lsp.js', '--stdio' }, + filetypes = { 'newt' }, + root_markers = { '.git' } +} +vim.lsp.enable('newt_ls')