Smirnov Aleksandr
Smirnov Aleksandr
50584123+Smirnov-O@users.noreply.github.com Add aliases, 6 years ago
50584123+Smirnov-O@users.noreply.github.com Add aliases, 6 years ago
| 1 | export ZSH="/home/sasha/.oh-my-zsh" |
| 2 | #export ZSH="/root/.oh-my-zsh" |
| 3 | |
| 4 | ZSH_THEME="simple" |
| 5 | #ZSH_THEME="bureau" |
| 6 | |
| 7 | # Uncomment the following line to use case-sensitive completion. |
| 8 | #CASE_SENSITIVE="true" |
| 9 | |
| 10 | # Case-sensitive completion must be off. _ and - will be interchangeable. |
| 11 | #HYPHEN_INSENSITIVE="true" |
| 12 | |
| 13 | # Uncomment the following line to disable bi-weekly auto-update checks. |
| 14 | #DISABLE_AUTO_UPDATE="true" |
| 15 | |
| 16 | # Uncomment the following line to automatically update without prompting. |
| 17 | #DISABLE_UPDATE_PROMPT="true" |
| 18 | |
| 19 | # Uncomment the following line to change how often to auto-update (in days). |
| 20 | export UPDATE_ZSH_DAYS=24 |
| 21 | |
| 22 | # Uncomment the following line if pasting URLs and other text is messed up. |
| 23 | #DISABLE_MAGIC_FUNCTIONS=true |
| 24 | |
| 25 | # Uncomment the following line to disable colors in ls. |
| 26 | #DISABLE_LS_COLORS="true" |
| 27 | |
| 28 | # Uncomment the following line to disable auto-setting terminal title. |
| 29 | #DISABLE_AUTO_TITLE="true" |
| 30 | |
| 31 | # Uncomment the following line to enable command auto-correction. |
| 32 | #ENABLE_CORRECTION="true" |
| 33 | |
| 34 | # Uncomment the following line to display red dots whilst waiting for completion. |
| 35 | #COMPLETION_WAITING_DOTS="true" |
| 36 | |
| 37 | plugins=( autopep8 django pip node npm docker git tmux ) |
| 38 | source $ZSH/oh-my-zsh.sh |
| 39 | |
| 40 | # User configuration |
| 41 | |
| 42 | # You may need to manually set your language environment |
| 43 | #export LANG=en_US.UTF-8 |
| 44 | |
| 45 | alias cls='clear' |
| 46 | alias sl='ls' |
| 47 | alias cd..='cd ..' |
| 48 | alias :q="exit" |
| 49 | alias c="cd ~/code" |
| 50 | alias ipy='ipython3' |
| 51 | alias ipy3='ipython3' |
| 52 | alias py='python3' |
| 53 | alias py3='python3' |