Skip to content

Commit

Permalink
feat(nixvim): change LSP servers
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelsgirao committed Jan 3, 2025
1 parent 529389e commit 46b99a8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions modules/core/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,15 @@ in
lsp.servers = {
nil_ls.enable = true; # Nix
marksman.enable = true; # Markdown
ruff.enable = true; # Python
pylyzer.enable = true; # Python

# Python
ruff.enable = true;
# pylyzer crashes ALL the time, very annoying
# pylyzer.enable = true;
pylsp.enable = true;
pyre.enable = true;

ts_ls.enable = true; # Typescript
typst_lsp.enable = true; # Typst
terraformls.enable = true; # Terraform
};
Expand Down

0 comments on commit 46b99a8

Please sign in to comment.