diff options
| author | Skladnayazebra <skladnayazebra@gmail.com> | 2026-04-07 12:32:42 +0200 |
|---|---|---|
| committer | Skladnayazebra <skladnayazebra@gmail.com> | 2026-04-07 12:32:42 +0200 |
| commit | b458a728933719630a271f2b5b63ef3a3cf31229 (patch) | |
| tree | 923ccd3f15a9b2aa5d37ebe508d56adcfcae31d2 /zsh/alias.zsh | |
| parent | b46bb02107e82161764f961bd06e55a11e0c5f68 (diff) | |
zsh: move alias to separate file; add pnpm alias
Diffstat (limited to 'zsh/alias.zsh')
| -rw-r--r-- | zsh/alias.zsh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/zsh/alias.zsh b/zsh/alias.zsh new file mode 100644 index 0000000..360fe86 --- /dev/null +++ b/zsh/alias.zsh @@ -0,0 +1,15 @@ +alias ls='ls --color=auto' +alias t='tmux' +alias n='nvim' +# dot at the beginning makes shell to cd into last dir selected in ranger +alias rr='. ranger' +alias lg=lazygit +# connect to my earbuds +alias b='bluetoothctl connect E4:92:82:B5:80:1F' +alias p='cd ~/projects' +alias c='cd ~/.config' +alias dark="lookandfeeltool -a org.kde.breezedark.desktop" +alias light="lookandfeeltool -a org.kde.breeze.desktop" +alias leave="qdbus6 org.kde.Shutdown /Shutdown logout" +alias o='xdg-open' +alias pn='pnpm' |
