Files
newt/vim/plugin/newt-lsp.lua
2026-02-25 19:23:11 -08:00

8 lines
222 B
Lua

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