-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathenv
37 lines (27 loc) · 937 Bytes
/
env
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
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Configure vim as default editor
export GIT_EDITOR=vim
export VISUAL=vim
export EDITOR=vim
# Set up antigen path
ANTIGEN=${ANTIGEN:-"$HOME/.antigen"}
# Custom configuration
export HISTORY_BASE=~/.config/directory_history
#export IFS=$'\n'
# Remove this annoyance
setopt NO_BEEP
# Use fzf where available, otherwise fallback to zsh-select, selecta, etc
CTRLP_FUZZER_COMMAND='fzf'
zstyle ':completion:*' format $'Completing %d\n'
export TERM="xterm-256color"
export PATH=$PATH:/usr/local/bin
# https://github.com/bhilburn/powerlevel9k/issues/420
export ZLE_RPROMPT_INDENT=0
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
export PATH="/usr/local/opt/[email protected]/sbin:$PATH"
export GOPATH=$HOME/go
export GOROOT="/usr/local/opt/go/libexec"
export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin"
export HISTCONTROL=erasedups:ignorespace
export ZSH_FZF_HISTORY_SEARCH_REMOVE_DUPLICATES='true'