33 lines
715 B
Bash
Executable file
33 lines
715 B
Bash
Executable file
#!/bin/sh
|
|
|
|
alias la='ls --color=auto -la'
|
|
alias ll='ls --color=auto -l'
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
|
|
alias :e="nvim"
|
|
alias v="nvim"
|
|
alias vi="nvim"
|
|
alias vim="nvim"
|
|
|
|
alias f="fuck"
|
|
|
|
alias irssi='irssi --config="$XDG_CONFIG_HOME"/irssi/config --home="$XDG_DATA_HOME"/irssi'
|
|
|
|
alias unison="unison -logfile ~/.unison/unison.log"
|
|
alias unison-2.48="unison-2.48 -logfile ~/.unison/unison.log"
|
|
|
|
alias pacman="aura"
|
|
|
|
mkcd() {
|
|
mkdir -p "$1"
|
|
cd "$1"
|
|
}
|
|
|
|
if [[ $- == *i* ]] && command -v zsh >/dev/null 2>&1; then
|
|
exec zsh
|
|
fi
|
|
|
|
export PS1="
|
|
$(tput bold)$(tput setaf 1)[$(tput setaf 3)\u$(tput setaf 2)@$(tput setaf 4)\H $(tput setaf 5)\w$(tput setaf 1)]$(tput setaf 7)
|
|
$ $(tput sgr0)"
|