Changes
1 changed files (+12/-1)
-
-
@@ -39,6 +39,17 @@# Swap file nvim = if config.programs.neovim.enable then [ ".*.swp" ] else [ ]; # PNPM has a bug where it ignores $PNPM_HOME environment variable and # forcibly write store directory on project root if the project directory # and the $PNPM_HOME are mounted differently. # https://github.com/pnpm/pnpm/issues/7050 # # Since my workflow is "container with bind mounted project directory", # pnpm always creates ".pnpm-store" at project root. I've never seen a # project that commit a file or a directory of this name, it's safe to # ignore globally. pnpm = [ ".pnpm-store" ]; # https://github.com/github/gitignore/blob/main/Global/macOS.gitignore darwin = if pkgs.stdenv.isDarwin then
-
@@ -50,7 +61,7 @@else [ ]; in nvim ++ darwin ++ bazel; nvim ++ darwin ++ bazel ++ pnpm; }; programs.difftastic = {
-