File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed
Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ umask 022
77# Path to your oh-my-zsh installation
88export ZSH=$HOME /.oh-my-zsh
99
10+ # Add local bin dir to PATH
11+ export PATH=$HOME /.bin:/usr/local/bin:$PATH
12+
1013# GPG always wants to know what TTY it's running on
1114export GPG_TTY=$( tty)
1215
@@ -17,8 +20,15 @@ ZSH_THEME="kaos"
1720plugins=()
1821
1922# Enable fzf plugin if fzf is installed
20- if [[ -d " $HOME /.fzf" ]] ; then
21- export PATH=" $HOME /.fzf:$PATH "
23+ if [[ -f " $HOME /.bin/fzf" ]] ; then
24+ export FZF_PATH=" $HOME /.bin/fzf"
25+ export FZF_BASE=" $HOME /.fzf"
26+
27+ if [[ ! -d " $FZF_BASE " ]] ; then
28+ mkdir " $FZF_BASE "
29+ fzf --zsh > " $FZF_BASE /key-bindings.zsh"
30+ fi
31+
2232 plugins+=(fzf)
2333fi
2434
@@ -83,9 +93,6 @@ export GOPATH=~/projects/gocode
8393export GOBIN=~ /projects/gocode/bin
8494export PATH=~ /projects/gocode/bin:$PATH
8595
86- # Add local bin dir to PATH
87- export PATH=$HOME /.bin:/usr/local/bin:$PATH
88-
8996# Aliases
9097alias sshk=" ssh $SSH_QUIET_OPTS "
9198alias scpk=" scp $SSH_QUIET_OPTS "
Original file line number Diff line number Diff line change 77
88# ###############################################################################
99
10- VERSION=" 2.5.12 "
10+ VERSION=" 2.5.13 "
1111
1212# ###############################################################################
1313
You can’t perform that action at this time.
0 commit comments