lsp config for nvim

This commit is contained in:
2026-02-25 19:23:11 -08:00
parent 4c5cd4dec0
commit f3b8b1b7b5

7
vim/plugin/newt-lsp.lua Normal file
View File

@@ -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')