18 lines
315 B
Bash
18 lines
315 B
Bash
#!/bin/sh
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
|
|
alias vi="nvim"
|
|
alias vim="nvim"
|
|
|
|
alias f="fuck"
|
|
|
|
mkcd() {
|
|
mkdir -p $1
|
|
cd $1
|
|
}
|
|
|
|
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)"
|