-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
69 lines (52 loc) · 1.93 KB
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Path to your oh-my-zsh configuration.
export ZSH=$HOME/.oh-my-zsh
export CONFIG_DIR=$HOME/gosu_vim_config
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
export ZSH_THEME="robbyrussell"
#export ZSH_THEME="pygmalion"
# Set to this to use case-sensitive completion
# export CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
export DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# export DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
export DISABLE_AUTO_TITLE="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=()
source $ZSH/oh-my-zsh.sh
alias sudo='nocorrect sudo'
#function git_prompt_info() {
#ref=$(git symbolic-ref HEAD 2> /dev/null) || return
#echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$ZSH_THEME_GIT_PROMPT_SUFFIX"
#}
# Customize to your needs...
bindkey "^[[3~" delete-char
if [ -f $CONFIG_DIR/.aliases ]; then
. $CONFIG_DIR/.aliases
fi
if [ -f $CONFIG_DIR/.exports ]; then
. $CONFIG_DIR/.exports
fi
if [ -f ~/.profile ]; then
. ~/.profile
fi
export EDITOR=vim
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
alias copy='xsel -ib'
alias pbpaste='xclip -selection clipboard -o'
alias pbcopy='xclip -selection clipboard'
/usr/bin/xmodmap ~/.xmodmaprc 2> /dev/null
alias python='python3'
alias pip='pip3'
fi
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
export WIN=/mnt/c/Users/alfredomesn/