diff options
Diffstat (limited to '.config/shell')
| -rw-r--r-- | .config/shell/aliasrc | 23 | ||||
| -rw-r--r-- | .config/shell/envvarrc | 2 |
2 files changed, 12 insertions, 13 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 172b5bf..f767152 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -5,10 +5,11 @@ [ -f "$XINITRC" ] && alias startx="startx \$XINITRC" # sudo not required for some system commands -sudo_cmds="mount umount sv apt apt-get aptitude dpkg su shutdown poweroff reboot cryptsetup" +sudo_cmds="mount umount sv apt apt-get aptitude dpkg shutdown poweroff reboot cryptsetup" for command in $sudo_cmds; do alias \$command="sudo \$command" -done; unset command +done +unset command # Verbosity and settings that you pretty much just always are going to want. alias \ @@ -22,7 +23,7 @@ alias \ rm="logrm -vI" \ rmdir="rmdir -vp" \ rsync="rsync -vrPlu" \ - vim="nvim" \ + vim="nvim" # Colorize commands when possible. alias \ @@ -33,20 +34,20 @@ alias \ fgrep="fgrep --color=auto" \ grep="grep --color=auto" \ ip="ip -color=auto" \ - vdir="vdir --color=auto" \ + vdir="vdir --color=auto" # Making stuff easy to customize and source automatically alias \ - vrc='$EDITOR "$HOME/.config/nvim/init.lua"' \ - zal='$EDITOR "$ZDOTDIR/aliasrc" && source "$ZDOTDIR/aliasrc"' \ - zen='$EDITOR "$ZDOTDIR/envvarrc" && source "$ZDOTDIR/envvarrc"' \ - zrc='$EDITOR "$ZDOTDIR/.zshrc" && source "$ZDOTDIR/.zshrc"' \ + vrc='$EDITOR "$HOME/.config/nvim/init.lua"' \ + zal='$EDITOR "$ZDOTDIR/aliasrc" && source "$ZDOTDIR/aliasrc"' \ + zen='$EDITOR "$ZDOTDIR/envvarrc" && source "$ZDOTDIR/envvarrc"' \ + zrc='$EDITOR "$ZDOTDIR/.zshrc" && source "$ZDOTDIR/.zshrc"' # Aliases for connecting to server alias \ - ctg="ssh git@rabiega.xyz" \ + ctg="ssh git@rabiega.xyz" \ cts="ssh root@rabiega.xyz" \ - ctc="ssh root@chadguide.site" \ + ctc="ssh root@chadguide.site" # Making stuff shorter alias \ @@ -61,7 +62,7 @@ alias \ sd="sudo shutdown -h now" \ sql="pgcli" \ update="sudo apt update && apt upgrade" \ - wttr="curl wttr.in/Wroclaw" \ + wttr="curl wttr.in/Wroclaw" # Git aliases alias \ diff --git a/.config/shell/envvarrc b/.config/shell/envvarrc index 5401b1d..acdb24d 100644 --- a/.config/shell/envvarrc +++ b/.config/shell/envvarrc @@ -67,8 +67,6 @@ export GOBIN="$GOPATH/bin" # Python / Conda export _CONDA_ROOT="$HOME/.local/opt/miniconda3" export IPYTHONDIR="$XDG_CONFIG_HOME/ipython" - -# Ren'Py export RENPY_USER="$HOME/langs/python/renpy" # Java |
