mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
11 lines
194 B
Bash
11 lines
194 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'
|