|
|
@@ -94,6 +94,13 @@ vim.lsp.config('ruby_lsp', {
|
|
|
})
|
|
|
vim.lsp.enable('ruby_lsp')
|
|
|
|
|
|
+vim.lsp.config('pyright', {
|
|
|
+ handlers = {
|
|
|
+ ['$/progress'] = function()
|
|
|
+ -- this is quite noisy so just disable it
|
|
|
+ end
|
|
|
+ },
|
|
|
+})
|
|
|
vim.lsp.enable('pyright')
|
|
|
|
|
|
vim.lsp.config('nil_ls', {
|