|
@@ -90,5 +90,23 @@ null_ls.setup({
|
|
|
end,
|
|
|
});
|
|
|
|
|
|
+-- custom LSP servers
|
|
|
+local configs = require('lspconfig.configs')
|
|
|
+
|
|
|
+if not configs.elvish then
|
|
|
+ configs.elvish = {
|
|
|
+ default_config = {
|
|
|
+ cmd = {'elvish', '--lsp'},
|
|
|
+ filetypes = {'elvish'},
|
|
|
+ root_dir = nvim_lsp.util.root_pattern('*.elv'),
|
|
|
+ settings = {},
|
|
|
+ },
|
|
|
+ }
|
|
|
+end
|
|
|
+
|
|
|
+nvim_lsp.elvish.setup({
|
|
|
+ on_attach = on_attach,
|
|
|
+})
|
|
|
+
|
|
|
-- show LSP progress bar
|
|
|
require('fidget').setup()
|