24 lines
667 B
Bash
24 lines
667 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias grep='grep --color=auto'
|
|
|
|
|
|
if [ -f /etc/bash_completion ]; then
|
|
. /etc/bash_completion
|
|
elif [ -f /usr/share/bash-completion/bash_completion ]; then
|
|
. /usr/share/bash-completion/bash_completion
|
|
elif [ -f /usr/local/etc/bash_completion ]; then
|
|
. /usr/local/etc/bash_completion
|
|
fi
|
|
|
|
|
|
alias vi='nvim'
|
|
export DBUS_SESSION_BUS_ADDRESS=$(dbus-launch | grep -o "unix:abstract=[^,]*" | head -n 1)
|
|
bind "set completion-ignore-case on"
|
|
export STEAM_RUNTIME=/home/dukantic/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/SteamLinuxRuntime_sniper/
|