Newt - a dependent typed programming language

lsp config for nvim

+7
+7
vim/plugin/newt-lsp.lua
··· 1 + vim.lsp.config['newt_ls'] = { 2 + -- we'll change this to a newt-lsp wrapper later 3 + cmd = { 'node', 'newt-vscode-lsp/dist/lsp.js', '--stdio' }, 4 + filetypes = { 'newt' }, 5 + root_markers = { '.git' } 6 + } 7 + vim.lsp.enable('newt_ls')