Separated aliases from ~/.zshrc and fixed support to VSCodium

master
Meliurwen 3 years ago
parent 7bf1441867
commit 91cf17d8f0
Signed by: meliurwen
GPG Key ID: 818A8B35E9F1CE10
  1. 7
      aliases/.aliases
  2. 1
      vscode/.config/VSCodium
  3. 12
      zsh/.zshrc

@ -0,0 +1,7 @@
alias upgrade='sudo apt-get update && \
sudo apt upgrade && \
sudo apt-get autoremove --purge && \
sudo apt-get clean' # System clean upgrade
alias history='history 1' # Print whole history
alias diff='diff --color'
alias ls='ls --color=tty'

@ -10,16 +10,8 @@ setopt hist_ignore_space # ignore commands that start with space
setopt hist_verify # show command with history expansion to user before running it setopt hist_verify # show command with history expansion to user before running it
setopt share_history # share command history data setopt share_history # share command history data
# Aliases
### Aliases [ -f "$HOME/.aliases" ] && . "$HOME/.aliases"
alias upgrade='sudo apt-get update && \
sudo apt upgrade && \
sudo apt-get autoremove --purge && \
sudo apt-get clean' # System clean upgrade
alias history='history 1' # Print whole history
alias diff='diff --color'
alias ls='ls --color=tty'
### Keybinds ### Keybinds
# See: # See:

Loading…
Cancel
Save