Add .bashrc
This commit is contained in:
parent
44f1922399
commit
795c087582
33
.bashrc
Normal file
33
.bashrc
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
# Complete commands when using sudo and man
|
||||||
|
complete -cf sudo
|
||||||
|
complete -c man
|
||||||
|
|
||||||
|
# Aliases
|
||||||
|
alias cinnamon-restart='nohup cinnamon --replace > /dev/null 2>&1 &'
|
||||||
|
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||||
|
alias latex='lualatex'
|
||||||
|
alias ls='ls -v --color=auto'
|
||||||
|
alias mutt='pushd ~/Downloads > /dev/null; mutt; popd > /dev/null'
|
||||||
|
alias sort='sort -n'
|
||||||
|
alias ssh='ssh -X'
|
||||||
|
alias sudo='sudo '
|
||||||
|
alias vi='vim'
|
||||||
|
|
||||||
|
# PS1
|
||||||
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
|
if [ ! -d ~/.cache/mutt ]; then
|
||||||
|
mkdir ~/.cache/mutt
|
||||||
|
fi
|
||||||
|
|
||||||
|
export SUDO_EDITOR=rvim
|
||||||
|
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh"
|
||||||
|
|
||||||
|
neofetch
|
Loading…
x
Reference in New Issue
Block a user