all repos

dotfiles @ d5685185d7c04f333ef2b30176e86398203cfeb6

i use rach linux btw

dotfiles/zshrc (view raw)

1
export ZSH="/home/sasha/.oh-my-zsh"
2
source ~/.env
3
source ~/.profile
4
5
6
### Oh my zsh ###
7
ZSH_THEME="cyan-simple"          # Set theme
8
#CASE_SENSITIVE="true"           # Use case-sensitive completion.
9
#HYPHEN_INSENSITIVE="true"       # Case-sensitive completion must be off.
10
#DISABLE_AUTO_UPDATE="true"      # Disable bi-weekly auto-update checks.
11
#DISABLE_UPDATE_PROMPT="true"    # Automatically update without prompting.
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 UPDATE_ZSH_DAYS=13        # Change how often to auto-update.
18
export LANG=en_US.UTF-8          # Set locale
19
20
plugins=(pip python sudo heroku git taskwarrior)
21
source $ZSH/oh-my-zsh.sh
22
23
24
### Variables ###
25
export EDITOR="nvim"
26
export VISUAL="nvim"
27
28
### Aliases ###
29
alias cls="clear"
30
alias :q="exit"
31
alias tmux="tmux -2"
32
alias icat="kitty +kitten icat"
33
34
alias ..="cd .."
35
alias ...="cd ../.."
36
alias .3="cd ../../.."
37
alias .4="cd ../../../.."
38
alias .5="cd ../../../../.."
39
alias .6="cd ../../../../../.."
40
41
alias tozsh="chsh -s /bin/zsh && echo 'Now log out.'"
42
alias tofish="chsh -s /bin/fish && echo 'Now log out.'"
43
alias tobash="chsh -s /bin/bash && echo 'Now log out.'"