Last active
June 24, 2023 01:18
-
-
Save askiiart/453ea4b11e0f25fde5f8cebd9c838986 to your computer and use it in GitHub Desktop.
Here's my .bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific environment | |
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] | |
then | |
PATH="$HOME/.local/bin:$HOME/bin:$PATH" | |
fi | |
export PATH | |
# Uncomment the following line if you don't like systemctl's auto-paging feature: | |
# export SYSTEMD_PAGER= | |
# User specific aliases and functions | |
alias rm='rm -i' | |
alias cp='cp -i' | |
alias mv='mv -i' | |
# some more ls aliases | |
alias ll='ls -l' | |
alias la='ls -A' | |
alias l='ls -CF' | |
# kitty stuff | |
alias icat="kitty +kitten icat" | |
export TERM=xterm | |
# docker stuff | |
alias dcompose='sudo docker compose up -d --remove-orphans' | |
alias docker='sudo docker' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment