git-svn-id: http://photonzero.com/dotfiles/trunk@105 23f722f6-122a-0410-8cef-c75bd312dd78

This commit is contained in:
michener 2011-08-27 00:07:45 +00:00
parent 2de1c8b44c
commit 626bfce9bd
4 changed files with 317 additions and 1 deletions

6
.vimrc
View file

@ -67,7 +67,6 @@ let g:Tb_MapCTabSwitchBufs = 1
let g:LustyExplorerSuppressRubyWarning = 1
let g:LustyJugglerSuppressRubyWarning = 1
let g:LustyJugglerShowKeys = 'a'
let mapleader = ","
let g:buftabs_only_basename = 1
"let g:buftabs_in_statusline=1
let g:NERDChristmasTree = 1
@ -77,6 +76,7 @@ let g:NERDTreeWinPos = "right"
let Tlist_GainFocus_On_ToggleOpen = 1
let Tlist_Use_Right_Window = 1
let Tlist_Inc_Winwidth = 0
let Tlist_File_Fold_Auto_Close = 1
let Tlist_WinWidth = 40
let Tlist_Show_One_File = 0
@ -275,6 +275,10 @@ if filereadable("/home/build/nonconf/google3/tools/tags/gtags.vim")
nmap <C-]> :exe 'Gtlist ' . expand('<cword>')<CR>
endif
" Configure browser for haskell_doc.vim
let g:haddock_browser = "open"
let g:haddock_browser_callformat = "%s %s"
" new shell execute that pipes output to window
function! s:ExecuteInShellOutput(command)
let command = join(map(split(a:command), 'expand(v:val)'))