Skip to content

Commit

Permalink
Merge branch 'master' of github.com:eaceaser/vimfiles
Browse files Browse the repository at this point in the history
Conflicts:
	bundle/command-t
	bundle/vim-fugitive
	bundle/vim-pathogen
  • Loading branch information
eaceaser committed Feb 25, 2011
2 parents c647c64 + 2465d6f commit c42a0c2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
1 change: 0 additions & 1 deletion bundle/command-t
Submodule command-t deleted from a338c4
1 change: 0 additions & 1 deletion bundle/snipmate.vim
Submodule snipmate.vim deleted from f5a75d
2 changes: 1 addition & 1 deletion bundle/vim-fugitive
Submodule vim-fugitive updated 3 files
+6 −1 README.markdown
+27 −0 doc/fugitive.txt
+179 −17 plugin/fugitive.vim
2 changes: 1 addition & 1 deletion bundle/vim-pathogen
Submodule vim-pathogen updated 1 files
+2 −2 autoload/pathogen.vim
2 changes: 1 addition & 1 deletion bundle/vim-rails
Submodule vim-rails updated 2 files
+32 −120 autoload/rails.vim
+5 −10 doc/rails.txt
2 changes: 1 addition & 1 deletion bundle/vim-ruby
Submodule vim-ruby updated 3 files
+3 −4 ftplugin/eruby.vim
+38 −23 indent/ruby.vim
+3 −4 syntax/eruby.vim
12 changes: 8 additions & 4 deletions vimrc
@@ -1,6 +1,7 @@
set runtimepath^=~/.vim/bundle/vim-pathogen
call pathogen#runtime_append_all_bundles()
call scriptmanager#Activate(['vim-addon-sbt'])
call scriptmanager#Activate()
let g:vim_script_manager['plugin_root_dir']='~/.vim/addon-manager'

" ScriptManager options

Expand All @@ -18,7 +19,7 @@ set nocompatible
set cmdheight=2
set ttyfast
set smartcase
set cursorline
"set cursorline
set hlsearch
set list
set shortmess=atI
Expand All @@ -37,7 +38,9 @@ set switchbuf=usetab
" Font
"set gfn=Consolas:h13
"set gfn=Monaco:h11
set gfn=Menlo:h11
"set gfn=Menlo:h11
set noantialias
set gfn=fixed-6x13:h13
if has("gui_running")
colorscheme ir_black
set guioptions=egm
Expand Down Expand Up @@ -69,7 +72,8 @@ set laststatus=2
set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P

" folds
set foldmethod=marker
set foldmethod=syntax
set foldnestmax=2

if executable("ack")
set grepprg=ack\ -H\ --nogroup\ --nocolor
Expand Down

0 comments on commit c42a0c2

Please sign in to comment.