-
Hello! I'm trying to run the templates:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Escape the In zsh Put a nix flake init -t github:BirdeeHub/nixCats-nvim\#default And if you plan to keep using both zsh and nix, as I do myself, you might want to turn the fail on no match setting off so that you can copy paste nix commands without this annoyance. This is the zsh setting that makes it so that setopt extendedglob You can leave extendedglob on if you would like. You should turn off the fail on no match setting like this unsetopt nomatch This way, if it fails, it will then just ignore it and execute the command as if it were escaped. |
Beta Was this translation helpful? Give feedback.
Escape the
#
In zsh
#
can be a matching/globbing character if you have the extended globbing setting on. If you also have the fail on no match setting on, it will then cause the command to fail rather than falling back to executing normally.Put a
\
before it.nix flake init -t github:BirdeeHub/nixCats-nvim\#default
And if you plan to keep using both zsh and nix, as I do myself, you might want to turn the fail on no match setting off so that you can copy paste nix commands without this annoyance.
This is the zsh setting that makes it so that
#
can be used as a matching/globbing character.You can leave extendedglob on if you would like.
You should turn off the fail on …