Skip to content

Commit 2cfb1f7

Browse files
author
Francisco Espino
committed
chore(lsp): fixed lspconfig version
1 parent 9d64b19 commit 2cfb1f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

init.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ require('lazy').setup({
461461
dependencies = {
462462
-- Automatically install LSPs and related tools to stdpath for Neovim
463463
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants
464-
'williamboman/mason-lspconfig.nvim',
464+
{ 'williamboman/mason-lspconfig.nvim', version = '805c31' },
465465
'WhoIsSethDaniel/mason-tool-installer.nvim',
466466

467467
-- Useful status updates for LSP.
@@ -619,7 +619,7 @@ require('lazy').setup({
619619
-- Configure ruff_lsp.
620620
-- See: https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#ruff_lsp
621621
-- For the default config, along with instructions on how to customize the settings
622-
ruff_lsp = {
622+
ruff = {
623623
settings = {
624624
-- disable organize imports since we are using isort already
625625
organizeImports = false,
@@ -741,7 +741,7 @@ require('lazy').setup({
741741
lsp_format_opt = 'fallback'
742742
end
743743
return {
744-
timeout_ms = 500,
744+
timeout_ms = 2000, -- originally: 500
745745
lsp_format = lsp_format_opt,
746746
}
747747
end,

0 commit comments

Comments
 (0)