mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
Update install.sh and add zsh, tmux config
This commit is contained in:
parent
d6d447ed32
commit
00a1fea51b
4 changed files with 1581 additions and 46 deletions
51
zshrc
Normal file
51
zshrc
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
export ZSH="/home/sasha/.oh-my-zsh"
|
||||
#export ZSH="/root/.oh-my-zsh"
|
||||
|
||||
ZSH_THEME="simple"
|
||||
#ZSH_THEME="bureau"
|
||||
|
||||
# Uncomment the following line to use case-sensitive completion.
|
||||
#CASE_SENSITIVE="true"
|
||||
|
||||
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
||||
#HYPHEN_INSENSITIVE="true"
|
||||
|
||||
# Uncomment the following line to disable bi-weekly auto-update checks.
|
||||
#DISABLE_AUTO_UPDATE="true"
|
||||
|
||||
# Uncomment the following line to automatically update without prompting.
|
||||
#DISABLE_UPDATE_PROMPT="true"
|
||||
|
||||
# Uncomment the following line to change how often to auto-update (in days).
|
||||
export UPDATE_ZSH_DAYS=24
|
||||
|
||||
# Uncomment the following line if pasting URLs and other text is messed up.
|
||||
#DISABLE_MAGIC_FUNCTIONS=true
|
||||
|
||||
# Uncomment the following line to disable colors in ls.
|
||||
#DISABLE_LS_COLORS="true"
|
||||
|
||||
# Uncomment the following line to disable auto-setting terminal title.
|
||||
#DISABLE_AUTO_TITLE="true"
|
||||
|
||||
# Uncomment the following line to enable command auto-correction.
|
||||
#ENABLE_CORRECTION="true"
|
||||
|
||||
# Uncomment the following line to display red dots whilst waiting for completion.
|
||||
#COMPLETION_WAITING_DOTS="true"
|
||||
|
||||
plugins=( autopep8 django pip node npm docker git tmux )
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
# User configuration
|
||||
|
||||
# You may need to manually set your language environment
|
||||
#export LANG=en_US.UTF-8
|
||||
|
||||
alias cls='clear'
|
||||
alias sl='ls'
|
||||
alias cd..='cd ..'
|
||||
alias ipy='ipython3'
|
||||
alias ipy3='ipython3'
|
||||
alias py='python3'
|
||||
alias py3='python3'
|
||||
Loading…
Add table
Add a link
Reference in a new issue