fix(neovim): let mason own lsp tools

This commit is contained in:
Bryan Ramos 2026-04-30 13:16:27 -04:00
parent 42c9fbc6e1
commit 05d7694fa6
2 changed files with 5 additions and 23 deletions

View file

@ -1,24 +1,6 @@
{ pkgs, ... }:
let
# Essential LSPs for config files (project-specific LSPs go in devShells)
lsp = with pkgs; [
nixd
lua-language-server
marksman
taplo
];
lsp' = with pkgs.nodePackages; [
vscode-langservers-extracted # jsonls, html, cssls
bash-language-server
yaml-language-server
];
extraPackages = with pkgs; [
lazygit
gcc
];
in
extraPackages ++ lsp ++ lsp'
with pkgs; [
gcc
lazygit
]