diff --git a/aliases/.aliases b/aliases/.aliases new file mode 100644 index 0000000..e1fc170 --- /dev/null +++ b/aliases/.aliases @@ -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' diff --git a/vscode/.config/VSCodium b/vscode/.config/VSCodium new file mode 120000 index 0000000..c28873d --- /dev/null +++ b/vscode/.config/VSCodium @@ -0,0 +1 @@ +Code \ No newline at end of file diff --git a/zsh/.zshrc b/zsh/.zshrc index 707bb28..51daf76 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -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 share_history # share command history data - -### 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' - +# Aliases +[ -f "$HOME/.aliases" ] && . "$HOME/.aliases" ### Keybinds # See: