Browse Source

More vimrc options

cinaeco 14 years ago
parent
commit
86ebdd3124
1 changed files with 5 additions and 3 deletions
  1. 5 3
      vim/vimrc

+ 5 - 3
vim/vimrc

@@ -10,6 +10,8 @@ call pathogen#infect()
 
 
 set nocompatible "Don't have to try to be compatible with old vi
 set nocompatible "Don't have to try to be compatible with old vi
 set autoread "Read a file if it's changed from outside of vim
 set autoread "Read a file if it's changed from outside of vim
+set splitbelow "New splits appear below current window instead of above
+set ttyfast "Smooth movement
 
 
 " Enable filetype specific features
 " Enable filetype specific features
 filetype plugin on
 filetype plugin on
@@ -34,9 +36,7 @@ set expandtab "change to single spaces
 set autoindent "use last line to set next indent
 set autoindent "use last line to set next indent
 set smartindent "guess harder, based on C-like language
 set smartindent "guess harder, based on C-like language
 set wrap lbr "wrap long lines of text
 set wrap lbr "wrap long lines of text
-
-" Set backspace config
-set backspace=eol,start,indent
+set backspace=eol,start,indent "backspace over everything
 
 
 
 
 """"""""
 """"""""
@@ -58,6 +58,7 @@ endif
 
 
 set number "show line numbers
 set number "show line numbers
 set ruler "show row,col count in status line
 set ruler "show row,col count in status line
+set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%)>)
 set laststatus=2 "always show a status line
 set laststatus=2 "always show a status line
 
 
 if version >= 730
 if version >= 730
@@ -94,6 +95,7 @@ endif
 set hlsearch "make searches highlighted
 set hlsearch "make searches highlighted
 set incsearch "vim will search as you type!
 set incsearch "vim will search as you type!
 set ignorecase
 set ignorecase
+set magic "enables wildcard searching
 
 
 
 
 """"""""
 """"""""