diff options
Diffstat (limited to 'bashrc')
| -rw-r--r-- | bashrc/.bashrc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bashrc/.bashrc b/bashrc/.bashrc index f3dfc73..95e2824 100644 --- a/bashrc/.bashrc +++ b/bashrc/.bashrc @@ -3,10 +3,20 @@ # If not running interactively, don't do anything [[ $- != *i* ]] && return +#ALIASES alias ls='ls --color=auto' +alias l='ls -lahF' alias code='code-oss' -alias xi='xbps-install' +alias xi='sudo xbps-install' +alias xr='sudo xbps-remove' +alias ..='cd ..' +alias poweroff='sudo poweroff' +alias reboot='sudo reboot' + +#EXPORTS export EDITOR='nvim' + +#OTHER PS1='[\u@\h \W]\$ ' function y() { |
