all repos

dotfiles @ 394d56fa6908da5418a6e5e21ce1050e587afd32

i use rach linux btw

dotfiles/zshrc (view raw)

1
export ZSH="/home/sasha/.oh-my-zsh"
2
#export ZSH="/root/.oh-my-zsh"
3
4
#ZSH_THEME="bureau"
5
ZSH_THEME="cyan-simple"
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
export DISABLE_AUTO_TITLE="true"
30
31
# Uncomment the following line to enable command auto-correction.
32
#ENABLE_CORRECTION="true"
33
34
# You may need to manually set your language environment
35
export LANG=en_US.UTF-8
36
37
# Uncomment the following line to display red dots whilst waiting for completion.
38
#COMPLETION_WAITING_DOTS="true"
39
40
# Plugins
41
plugins=(pip python sudo git tmux taskwarrior) 
42
source $ZSH/oh-my-zsh.sh
43
44
# User configuration
45
export EDITOR="vim"
46
47
echo "$(tput bold)Welcome:$(tput sgr0) $(whoami)"
48
source ~/.env
49
source ~/.profile
50
51
alias cls='clear'
52
alias :q="exit"
53
alias py='python3'