feat: nixvim lsp: pylsp -> pylyzer
This commit is contained in:
parent
932fa37cfa
commit
b7c4404575
1 changed files with 15 additions and 3 deletions
|
@ -1,13 +1,23 @@
|
||||||
{config, ...}: {
|
{...}: {
|
||||||
plugins = {
|
plugins = {
|
||||||
lsp = {
|
lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
pylsp.enable = true;
|
# For Python
|
||||||
bashls.enable = true;
|
#pylsp.enable = true;
|
||||||
|
pylyzer.enable = true;
|
||||||
|
#ruff.enable = true;
|
||||||
|
#ruff_lsp.enable = true;
|
||||||
|
|
||||||
|
# For CXX
|
||||||
clangd.enable = true;
|
clangd.enable = true;
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
bashls.enable = true;
|
||||||
fsautocomplete.enable = true;
|
fsautocomplete.enable = true;
|
||||||
gopls.enable = true;
|
gopls.enable = true;
|
||||||
|
|
||||||
|
# For Nix
|
||||||
#nil_ls.enable = true;
|
#nil_ls.enable = true;
|
||||||
nixd = {
|
nixd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -18,6 +28,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# For TypeScript
|
||||||
ts_ls.enable = true;
|
ts_ls.enable = true;
|
||||||
};
|
};
|
||||||
keymaps.lspBuf = {
|
keymaps.lspBuf = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue