Skip to content

Commit

Permalink
feat(ide): changed IDE for haskell: vscodium -> neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Jun 30, 2024
1 parent 29ce192 commit 89e938a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/dev/ide.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }:
{ config, lib, unstable, ... }:
with lib;
with lib.my;
let
Expand All @@ -18,7 +18,7 @@ let
web.package = webstorm;
andorid.package = unstable.andorid-studio;
haskell.extraConfig = {
home-manager.users.wittano.home.packages = with pkgs; [ vscodium ];
modules.dev.neovim.enable = true;
};
fork = { };
});
Expand Down
2 changes: 2 additions & 0 deletions modules/dev/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ in
enable = true; # Nix
settings.formatting.command = [ "${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt" ];
};
hls.enable = config.modules.desktop.xmonad.enable
|| ((lists.findFirst (x: x == "haskell") null config.modules.dev.lang.ides) != null);
dockerls.enable = true;
ansiblels.enable = true;
lua-ls.enable = true;
Expand Down

0 comments on commit 89e938a

Please sign in to comment.