|
@@ -54,17 +54,7 @@ if vim.fn.executable("deno") == 1 then
|
|
|
nvim_lsp.denols.setup({
|
|
|
on_attach = on_attach,
|
|
|
});
|
|
|
-end
|
|
|
-
|
|
|
-if vim.fn.executable("gopls") == 1 then
|
|
|
- nvim_lsp.gopls.setup({
|
|
|
- on_attach = on_attach,
|
|
|
- });
|
|
|
-elseif vim.fn.executable("gofmt") == 1 then
|
|
|
- table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
|
|
|
-end
|
|
|
-
|
|
|
-if vim.fn.executable("node_modules/.bin/tsc") == 1 then
|
|
|
+else
|
|
|
require('typescript').setup({
|
|
|
server = {
|
|
|
flags = {
|
|
@@ -85,9 +75,14 @@ if vim.fn.executable("node_modules/.bin/tsc") == 1 then
|
|
|
end
|
|
|
}
|
|
|
})
|
|
|
+end
|
|
|
|
|
|
- -- set compiler for :make
|
|
|
- vim.cmd("compiler! tsc")
|
|
|
+if vim.fn.executable("gopls") == 1 then
|
|
|
+ nvim_lsp.gopls.setup({
|
|
|
+ on_attach = on_attach,
|
|
|
+ });
|
|
|
+elseif vim.fn.executable("gofmt") == 1 then
|
|
|
+ table.insert(null_ls_sources, null_ls.builtins.formatting.gofmt)
|
|
|
end
|
|
|
|
|
|
if vim.fn.executable("solargraph") == 1 then
|