Adjust aliases
This commit is contained in:
parent
0172500af4
commit
90f9620352
|
@ -28,7 +28,6 @@ pz source ohmyzsh/ohmyzsh lib/git
|
||||||
pz source ohmyzsh/ohmyzsh lib/key-bindings
|
pz source ohmyzsh/ohmyzsh lib/key-bindings
|
||||||
|
|
||||||
# Source OMZ plugins
|
# Source OMZ plugins
|
||||||
pz source ohmyzsh/ohmyzsh plugins/extract
|
|
||||||
pz source ohmyzsh/ohmyzsh plugins/fzf
|
pz source ohmyzsh/ohmyzsh plugins/fzf
|
||||||
pz source ohmyzsh/ohmyzsh plugins/git
|
pz source ohmyzsh/ohmyzsh plugins/git
|
||||||
pz source ohmyzsh/ohmyzsh plugins/z
|
pz source ohmyzsh/ohmyzsh plugins/z
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
alias btctl="bluetoothctl"
|
|
||||||
alias cl="clear"
|
alias cl="clear"
|
||||||
alias cp="cp -i"
|
alias cp="cp -i"
|
||||||
|
alias exa="exa -Fh --color=always --git --icons"
|
||||||
alias grep="grep --color=always"
|
alias grep="grep --color=always"
|
||||||
alias ls="ls --color=always"
|
alias ls="ls --color=always"
|
||||||
alias mkdir="mkdir -p"
|
alias mkdir="mkdir -p"
|
||||||
|
@ -8,21 +8,23 @@ alias mv="mv -i"
|
||||||
alias q="exit"
|
alias q="exit"
|
||||||
alias rm="rm -i"
|
alias rm="rm -i"
|
||||||
alias srm="srm -i"
|
alias srm="srm -i"
|
||||||
alias t="exa --tree -I '.git'"
|
alias t="exa -a --tree -I '.git'"
|
||||||
|
alias tl="t -l"
|
||||||
alias tmux="tmux -2u"
|
alias tmux="tmux -2u"
|
||||||
alias u="update.sh"
|
alias u="update.sh"
|
||||||
alias wl-copy="wl-copy -n"
|
alias wl-copy="wl-copy -n"
|
||||||
alias zgrep="zgrep --color=always"
|
alias zgrep="zgrep --color=always"
|
||||||
|
|
||||||
if [[ $(uname -o) == "Android" ]]; then
|
if [[ $(uname -o) == "Android" ]]; then
|
||||||
alias l="exa -aFhl --color=always --git --icons"
|
alias l="exa -al"
|
||||||
alias la="exa -Fhl --color=always --git --icons"
|
alias la="exa -l"
|
||||||
alias ll="exa -aaFghl --color=always --git --icons"
|
alias ll="exa -aagl"
|
||||||
elif [[ $(uname -o) == "GNU/Linux" ]]; then
|
elif [[ $(uname -o) == "GNU/Linux" ]]; then
|
||||||
alias exa="exa -aFhl --color=always --git --icons"
|
alias btctl="bluetoothctl"
|
||||||
alias l="lsd -hlA --color=always"
|
alias l="lsd -hlA --color=always"
|
||||||
alias la="lsd -hl --color=always"
|
alias la="lsd -hl --color=always"
|
||||||
alias ll="lsd -hlaF --color=always"
|
alias ll="lsd -hlaF --color=always"
|
||||||
|
alias x="exa -al"
|
||||||
|
|
||||||
if [[ $(lsb_release -si) == "Artix" ]]; then
|
if [[ $(lsb_release -si) == "Artix" ]]; then
|
||||||
alias code="codium --enable-features=UseOzonePlatform --ozone-platform=wayland"
|
alias code="codium --enable-features=UseOzonePlatform --ozone-platform=wayland"
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
function pz_upgrade {
|
(( ${+commands[doas]} )) && function doasedit() {
|
||||||
pz zcompile -c >/dev/null
|
|
||||||
pz pull
|
|
||||||
pz zcompile >/dev/null
|
|
||||||
}
|
|
||||||
|
|
||||||
(( ${+commands[doas]} )) && function doasedit {
|
|
||||||
doas -L
|
doas -L
|
||||||
doas $EDITOR /etc/doas.conf
|
doas $EDITOR /etc/doas.conf
|
||||||
doas doas -C /etc/doas.conf && echo "ok" || echo "error"
|
doas doas -C /etc/doas.conf && echo "ok" || echo "error"
|
||||||
doas -L
|
doas -L
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function pz_upgrade() {
|
||||||
|
pz zcompile -c >/dev/null
|
||||||
|
pz pull
|
||||||
|
pz zcompile >/dev/null
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue