remove autojump occurencies (use fasd now)
This commit is contained in:
parent
9e680ae06a
commit
a772e6b180
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,9 +1,6 @@
|
||||||
[submodule "zsh-syntax-highlighting"]
|
[submodule "zsh-syntax-highlighting"]
|
||||||
path = zsh-syntax-highlighting
|
path = zsh-syntax-highlighting
|
||||||
url = git://github.com/zsh-users/zsh-syntax-highlighting.git
|
url = git://github.com/zsh-users/zsh-syntax-highlighting.git
|
||||||
[submodule "autojump"]
|
|
||||||
path = autojump
|
|
||||||
url = git://github.com/joelthelion/autojump.git
|
|
||||||
[submodule "dircolors-solarized"]
|
[submodule "dircolors-solarized"]
|
||||||
path = dircolors-solarized
|
path = dircolors-solarized
|
||||||
url = git://github.com/seebi/dircolors-solarized.git
|
url = git://github.com/seebi/dircolors-solarized.git
|
||||||
|
|
|
@ -14,7 +14,6 @@ alias pedit=" $EDITOR $ZSH_CONFIG/private.zsh; source $ZSH_CONFIG/private.zsh"
|
||||||
alias grep='grep --color=auto'
|
alias grep='grep --color=auto'
|
||||||
|
|
||||||
alias sign='gpg --detach-sign --armor'
|
alias sign='gpg --detach-sign --armor'
|
||||||
alias j=' j'
|
|
||||||
|
|
||||||
##### standard aliases (start with a space to be ignored in history)
|
##### standard aliases (start with a space to be ignored in history)
|
||||||
# default ls is untouched, except coloring
|
# default ls is untouched, except coloring
|
||||||
|
|
1
autojump
1
autojump
|
@ -1 +0,0 @@
|
||||||
Subproject commit d692bc644ac6c71dac05de7af720e649455cdeb5
|
|
|
@ -1,23 +0,0 @@
|
||||||
#compdef j
|
|
||||||
|
|
||||||
#Copyright Joel Schaerer 2008, 2009
|
|
||||||
#This file is part of autojump
|
|
||||||
|
|
||||||
#autojump is free software: you can redistribute it and/or modify
|
|
||||||
#it under the terms of the GNU General Public License as published by
|
|
||||||
#the Free Software Foundation, either version 3 of the License, or
|
|
||||||
#(at your option) any later version.
|
|
||||||
#
|
|
||||||
#autojump is distributed in the hope that it will be useful,
|
|
||||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
#GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
#You should have received a copy of the GNU General Public License
|
|
||||||
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
cur=${words[2, -1]}
|
|
||||||
|
|
||||||
autojump --completion ${=cur[*]} | while read i; do
|
|
||||||
compadd -U "$i";
|
|
||||||
done
|
|
4
zshrc
4
zshrc
|
@ -22,10 +22,6 @@ sources+="$ZSH_CONFIG/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||||
# (sudo apt-get install command-not-found)
|
# (sudo apt-get install command-not-found)
|
||||||
sources+="/etc/zsh_command_not_found"
|
sources+="/etc/zsh_command_not_found"
|
||||||
|
|
||||||
# Autojump: a cd command that learns
|
|
||||||
# Cloned From: git://github.com/joelthelion/autojump.git
|
|
||||||
sources+="$ZSH_CONFIG/autojump/autojump.zsh"
|
|
||||||
|
|
||||||
# Check for a system specific file
|
# Check for a system specific file
|
||||||
systemFile=`uname -s | tr "[:upper:]" "[:lower:]"`
|
systemFile=`uname -s | tr "[:upper:]" "[:lower:]"`
|
||||||
sources+="$ZSH_CONFIG/$systemFile.zsh"
|
sources+="$ZSH_CONFIG/$systemFile.zsh"
|
||||||
|
|
Loading…
Reference in a new issue