Skip to content
New issue

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

Cleanup #70

Merged
merged 3 commits into from
Dec 20, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove find=fd alias
Although I prefer fd, it's not compatible with find so I'd rather call it
manually, and it doesn't suffer from being hard to type and remember like exa
  • Loading branch information
hjdivad committed Dec 20, 2022
commit e461d474db40e1ed09e48fd91ce005a82e6298fb
6 changes: 0 additions & 6 deletions bash/bashrc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,6 @@ if $(which exa > /dev/null 2>&1); then
alias ll='exa -l --all --no-user --changed --sort=modified'
fi

# use fd if it exists
# https://github.com/sharkdp/fd
if $(which fd > /dev/null 2>&1); then
alias find='fd'
fi

# always create paths when using mkdir.
alias mkdir='mkdir -p'

Expand Down