From f3b8b1b7b530b1749d9a50784369f06aaa6548ec Mon Sep 17 00:00:00 2001 From: Steve Dunham Date: Wed, 25 Feb 2026 19:23:11 -0800 Subject: [PATCH] lsp config for nvim --- vim/plugin/newt-lsp.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 vim/plugin/newt-lsp.lua 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')