We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ls alias
fizsh
Happened to come across fizsh and would like to have a try... How can I add some ls alias for fizsh?
# some more ls aliases alias ll='ls -l' alias la='ls -A' alias l='ls -CF'
And, is it possible to source .bashrc FIRST before loading .fizsh ??
source .bashrc
.fizsh
Cheers
The text was updated successfully, but these errors were encountered:
You could start your ~/.fizshrc file by sourcing another file, for instance like this:
source /path/to/.bashrc
However, fizsh is based on zsh (and not on bash). So, your /path/to/.bashrc should not contain zsh incompatible code.
I would therefore directly define my aliases in my ~/.fizshrc file.
Sorry, something went wrong.
No branches or pull requests
Happened to come across
fizsh
and would like to have a try...How can I add some
ls alias
forfizsh
?And, is it possible to
source .bashrc
FIRST before loading.fizsh
??Cheers
The text was updated successfully, but these errors were encountered: