all repos

dotfiles @ 07805d44aa3c3f35866164242baaaad3fa20a745

i use rach linux btw

dotfiles/zshrc (view raw)

1
export ZSH="/home/sasha/.oh-my-zsh"
2
source ~/.env
3
4
5
### Oh my zsh ###
6
ZSH_THEME="cyan-simple"          # Set theme
7
#CASE_SENSITIVE="true"           # Use case-sensitive completion.
8
#HYPHEN_INSENSITIVE="true"       # Case-sensitive completion must be off.
9
#DISABLE_AUTO_UPDATE="true"      # Disable bi-weekly auto-update checks.
10
DISABLE_UPDATE_PROMPT="true"     # Automatically update without prompting.
11
export UPDATE_ZSH_DAYS=13        # Change how often to auto-update.
12
#DISABLE_MAGIC_FUNCTIONS="true"  # If pasting URLs and other text is messed up.
13
#DISABLE_LS_COLORS="true"        # Disable colors in ls.
14
#DISABLE_AUTO_TITLE="true"       # Disable auto-setting terminal title.
15
#ENABLE_CORRECTION="true"        # Enable command auto-correction.
16
#COMPLETION_WAITING_DOTS="true"  # Display red dots whilst waiting for completion.
17
export LANG=en_US.UTF-8          # Set locale
18
19
plugins=(pip python sudo git taskwarrior)
20
source $ZSH/oh-my-zsh.sh
21
22
### Aliases ###
23
alias cls="clear"
24
alias :q
25
26
alias ..="cd .."
27
alias ...="cd ../.."
28
alias .3="cd ../../.."
29
alias .4="cd ../../../.."
30
alias .5="cd ../../../../.."
31
alias .6="cd ../../../../../.."
32
33
alias tozsh="chsh -s /bin/zsh && echo 'Now log out.'"
34
alias tofish="chsh -s /bin/fish && echo 'Now log out.'"
35
alias tobash="chsh -s /bin/bash && echo 'Now log out.'"