nixos-config/modules/editors/helix/home.nix
2023-11-06 02:01:49 -05:00

21 lines
432 B
Nix

{pkgs, ...}: {
programs = {
helix = {enable = true;};
};
xdg.configFile = {"helix/config.toml".source = ./config.toml;};
home.packages = with pkgs; [
pyright
nil
taplo
yaml-language-server
terraform-ls
lua-language-server
rust-analyzer
nixfmt
nodePackages_latest.bash-language-server
nodePackages_latest.typescript-language-server
python311Packages.python-lsp-server
];
}