Files
nixos-config/home/programs/nixvim/plugins/haskell-tools.nix
Elias Schröter 761067ca6e nixvim plugins
install all currently wanted plugins
2026-04-13 18:09:16 +02:00

18 lines
407 B
Nix

{ pkgs, ... }:
{
programs.nixvim = {
extraPackages = with pkgs; [
haskell.compiler.native-bignum.ghc912
haskellPackages.haskell-language-server
haskellPackages.stack
haskellPackages.fast-tags
haskellPackages.hoogle
haskellPackages.haskell-debug-adapter
haskellPackages.ghci-dap
];
extraPlugins = with pkgs.vimPlugins; [ haskell-tools-nvim ];
};
}