dotfiles/bashrc
Smirnov Oleksandr 49ec72858f
Update bashrc
2020-03-19 17:24:18 +02:00

12 lines
214 B
Bash

export VISUAL="vim"
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='\u@\h \W \$ '
stty -ixon
alias cls='clear'
alias sl='ls'
alias cd..='cd ..'
alias py='python3'
alias py3='python3'
alias py2='python2'