24 lines
413 B
Bash
24 lines
413 B
Bash
# ~/.config/zsh/replacements.zsh
|
|
|
|
ls() {
|
|
eza --icons -l --sort type "$@"
|
|
}
|
|
|
|
cd(){
|
|
z "$@"
|
|
}
|
|
|
|
nvim() {
|
|
/opt/homebrew/bin/nvim --listen /tmp/nvim.pipe "$@"
|
|
}
|
|
|
|
vim() {
|
|
/opt/homebrew/bin/nvim --listen /tmp/nvim.pipe "$@"
|
|
}
|
|
|
|
v() {
|
|
/opt/homebrew/bin/nvim --listen /tmp/nvim.pipe "$@"
|
|
}
|
|
|
|
alias lg="lazygit"
|
|
alias calcurse-caldav='CALCURSE_CALDAV_PASSWORD=$(keyring get caldav afonso) calcurse-caldav'
|