Compare commits
2 Commits
b833b5bb34
...
17c2921c05
Author | SHA1 | Date | |
---|---|---|---|
17c2921c05 | |||
bd5ba8b971 |
@ -61,6 +61,7 @@
|
|||||||
lua-language-server
|
lua-language-server
|
||||||
clang-tools
|
clang-tools
|
||||||
zls
|
zls
|
||||||
|
ruff
|
||||||
];
|
];
|
||||||
home.sessionVariables.EDITOR = "nvim";
|
home.sessionVariables.EDITOR = "nvim";
|
||||||
}
|
}
|
||||||
|
@ -127,7 +127,39 @@ lspconfig.rust_analyzer.setup {
|
|||||||
}
|
}
|
||||||
|
|
||||||
-- LSP: python
|
-- LSP: python
|
||||||
|
-- Ruff server
|
||||||
|
lspconfig.ruff.setup({
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd("LspAttach", {
|
||||||
|
group = vim.api.nvim_create_augroup('lsp_attach_disable_ruff_hover', { clear = true }),
|
||||||
|
callback = function(args)
|
||||||
|
local client = vim.lsp.get_client_by_id(args.data.client_id)
|
||||||
|
if client == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if client.name == 'ruff' then
|
||||||
|
-- Disable hover in favor of Pyright
|
||||||
|
client.server_capabilities.hoverProvider = false
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
desc = 'LSP: Disable hover capability from Ruff',
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Pyright
|
||||||
lspconfig.pyright.setup {
|
lspconfig.pyright.setup {
|
||||||
|
settings = {
|
||||||
|
pyright = {
|
||||||
|
-- Using Ruff's import organizer
|
||||||
|
disableOrganizeImports = true,
|
||||||
|
},
|
||||||
|
python = {
|
||||||
|
analysis = {
|
||||||
|
-- Ignore all files for analysis to exclusively use Ruff for linting
|
||||||
|
ignore = { '*' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- LSP: C/C++
|
-- LSP: C/C++
|
||||||
|
Loading…
Reference in New Issue
Block a user