diff --git a/vim/gvimrc b/vim/gvimrc index 1d64579..1faabeb 100644 --- a/vim/gvimrc +++ b/vim/gvimrc @@ -6,8 +6,8 @@ set guifont=Monaco\ 11 set anti -set lines=50 -set columns=120 +set lines=45 " Change in vimrc.local +set columns=90 " Change in vimrc.local set mousefocus set errorbells set visualbell diff --git a/vim/vimrc b/vim/vimrc index 81e852c..4d1d3c9 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -109,11 +109,19 @@ set cinkeys=0{,0},0),:,0#,!^F,o,O,e,!,!^F " These are files we are not likely to want to edit or read. set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc + " """"""""""""""" " TagLIST support +" Below is a placeholder for ctags so vim does not complain if there is no +" ctags installed on the computer +" If you install ctags you can write the path into +" vimrc.local. +" let Tlist_Ctags_Cmd="/opt/local/bin/ctags" +" If ctags is on your path you just need to +" unlet Tlist_Ctags_Cmd " """"""""""""""" -" Defined in vimrc.local -" let Tlist_Ctags_Cmd="/opt/local/bin/ctags" + +let Tlist_Ctags_Cmd="/bin/true" let Tlist_Exit_OnlyWindow = 1 let Tlist_File_Fold_Auto_Close = 1 "let Tlist_Use_SingleClick = 0 "Do not use yet