dotfiles/homes/x86_64-linux/christopher@cobalt/config/editors.nix
2025-07-31 10:40:29 +02:00

13 lines
251 B
Nix

{pkgs, ...}: {
# Install common editors
home.packages = with pkgs; [
zed-editor
# Language Servers
lua-language-server
rust-analyzer
nodePackages.typescript
nodePackages.typescript-language-server
nil # nix lsp
];
}