tangled
alpha
login
or
join now
dunhamsteve.bsky.social
/
newt
1
fork
atom
Newt - a dependent typed programming language
1
fork
atom
overview
issues
pulls
pipelines
lsp config for nvim
dunhamsteve.bsky.social
4 weeks ago
f3b8b1b7
4c5cd4de
+7
1 changed file
expand all
collapse all
unified
split
vim
plugin
newt-lsp.lua
+7
vim/plugin/newt-lsp.lua
···
1
1
+
vim.lsp.config['newt_ls'] = {
2
2
+
-- we'll change this to a newt-lsp wrapper later
3
3
+
cmd = { 'node', 'newt-vscode-lsp/dist/lsp.js', '--stdio' },
4
4
+
filetypes = { 'newt' },
5
5
+
root_markers = { '.git' }
6
6
+
}
7
7
+
vim.lsp.enable('newt_ls')