Skip to content

Commit

Permalink
Move /usr/local/bin to the front, fix ctag support, gen vim-clojure docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinclark committed Nov 15, 2010
1 parent f5cd876 commit cb66335
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .bash_login
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ alias la='ls -a'
alias ll='ls -alF'

export EDITOR='mvim -f'
export PATH="/Users/$(whoami)/bin:/opt/local/bin:/opt/local/sbin:/opt/local/lib/postgresql83/bin:$PATH"
export PATH="/Users/$(whoami)/bin:/usr/local/bin:/opt/local/bin:/opt/local/sbin:/opt/local/lib/postgresql83/bin:$PATH"

export P4CONFIG=.p4config
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
Expand Down
46 changes: 46 additions & 0 deletions .vim/doc/tags
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,22 @@
:TlistUndebug taglist.txt /*:TlistUndebug*
:TlistUnlock taglist.txt /*:TlistUnlock*
:TlistUpdate taglist.txt /*:TlistUpdate*
DocLookupInteractive clojure.txt /*DocLookupInteractive*
DocLookupWord clojure.txt /*DocLookupWord*
EvalBlock clojure.txt /*EvalBlock*
EvalFile clojure.txt /*EvalFile*
EvalLine clojure.txt /*EvalLine*
EvalParagraph clojure.txt /*EvalParagraph*
EvalToplevel clojure.txt /*EvalToplevel*
FindDoc clojure.txt /*FindDoc*
GotoSourceInteractive clojure.txt /*GotoSourceInteractive*
GotoSourceWord clojure.txt /*GotoSourceWord*
JavadocLookupInteractive clojure.txt /*JavadocLookupInteractive*
JavadocLookupWord clojure.txt /*JavadocLookupWord*
MacroExpand clojure.txt /*MacroExpand*
MacroExpand1 clojure.txt /*MacroExpand1*
MetaLookupInteractive clojure.txt /*MetaLookupInteractive*
MetaLookupWord clojure.txt /*MetaLookupWord*
NERDTree NERD_tree.txt /*NERDTree*
NERDTree-! NERD_tree.txt /*NERDTree-!*
NERDTree-? NERD_tree.txt /*NERDTree-?*
Expand Down Expand Up @@ -132,6 +148,11 @@ NERDTreeOptionDetails NERD_tree.txt /*NERDTreeOptionDetails*
NERDTreeOptionSummary NERD_tree.txt /*NERDTreeOptionSummary*
NERDTreeOptions NERD_tree.txt /*NERDTreeOptions*
NERD_tree.txt NERD_tree.txt /*NERD_tree.txt*
RequireFile clojure.txt /*RequireFile*
RequireFileAll clojure.txt /*RequireFileAll*
SourceLookupInteractive clojure.txt /*SourceLookupInteractive*
SourceLookupWord clojure.txt /*SourceLookupWord*
StartRepl clojure.txt /*StartRepl*
Tlist_Get_Tag_Prototype_By_Line() taglist.txt /*Tlist_Get_Tag_Prototype_By_Line()*
Tlist_Get_Tagname_By_Line() taglist.txt /*Tlist_Get_Tagname_By_Line()*
Tlist_Set_App() taglist.txt /*Tlist_Set_App()*
Expand All @@ -145,6 +166,15 @@ bufexplorer-todo bufexplorer.txt /*bufexplorer-todo*
bufexplorer-usage bufexplorer.txt /*bufexplorer-usage*
bufexplorer.txt bufexplorer.txt /*bufexplorer.txt*
buffer-explorer bufexplorer.txt /*buffer-explorer*
clj-nailgun-server clojure.txt /*clj-nailgun-server*
clojure.vim clojure.txt /*clojure.vim*
eb clojure.txt /*eb*
ef clojure.txt /*ef*
el clojure.txt /*el*
ep clojure.txt /*ep*
et clojure.txt /*et*
fd clojure.txt /*fd*
ft-clj-syntax clojure.txt /*ft-clj-syntax*
fuzzyfinder fuzzyfinder.txt /*fuzzyfinder*
fuzzyfinder-abbreviation fuzzyfinder.txt /*fuzzyfinder-abbreviation*
fuzzyfinder-about fuzzyfinder.txt /*fuzzyfinder-about*
Expand Down Expand Up @@ -279,6 +309,21 @@ g:bufExplorerSortBy bufexplorer.txt /*g:bufExplorerSortBy*
g:bufExplorerSplitBelow bufexplorer.txt /*g:bufExplorerSplitBelow*
g:bufExplorerSplitOutPathName bufexplorer.txt /*g:bufExplorerSplitOutPathName*
g:bufExplorerSplitRight bufexplorer.txt /*g:bufExplorerSplitRight*
gi clojure.txt /*gi*
gw clojure.txt /*gw*
ji clojure.txt /*ji*
jw clojure.txt /*jw*
li clojure.txt /*li*
lw clojure.txt /*lw*
m1 clojure.txt /*m1*
me clojure.txt /*me*
mi clojure.txt /*mi*
mw clojure.txt /*mw*
rF clojure.txt /*rF*
rf clojure.txt /*rf*
si clojure.txt /*si*
sr clojure.txt /*sr*
sw clojure.txt /*sw*
taglist-commands taglist.txt /*taglist-commands*
taglist-debug taglist.txt /*taglist-debug*
taglist-extend taglist.txt /*taglist-extend*
Expand All @@ -296,3 +341,4 @@ taglist-session taglist.txt /*taglist-session*
taglist-todo taglist.txt /*taglist-todo*
taglist-using taglist.txt /*taglist-using*
taglist.txt taglist.txt /*taglist.txt*
vimclojure.txt clojure.txt /*vimclojure.txt*
4 changes: 4 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ syntax on

" Incremental search
set incsearch
set ignorecase
set hlsearch

set tabstop=4
set smarttab
Expand All @@ -10,6 +12,7 @@ set autoindent
set expandtab
set backspace=start,indent
set number
set ruler

colorscheme twilight

Expand Down Expand Up @@ -45,4 +48,5 @@ let TList_Use_Compact_Format=1
let Tlist_Exit_OnlyWindow=1
let Tlist_GainFocus_On_ToggleOpen=1
let Tlist_File_Fold_Auto_Close=1
let Tlist_Ctags_Cmd='/usr/local/bin/ctags'

0 comments on commit cb66335

Please sign in to comment.