forked from thoughtbot/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvimrc
More file actions
44 lines (41 loc) · 1.76 KB
/
Copy pathvimrc
File metadata and controls
44 lines (41 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""""""""""""""""""""""""""""""""
" Basics
"""""""""""""""""""""""""""""""""
runtime macros/matchit.vim " Enable matchit
runtime bundle/vim-pathogen/autoload/pathogen.vim
call pathogen#helptags()
call pathogen#infect()
filetype off
syntax on
set rtp+=~/.vim/bundle/vundle/ " Vundle
call vundle#rc()
filetype plugin indent on " indent files, ftplugins
set nocompatible " We're on vim, not vi
set wildmode=list:longest,list:full " Tab completion options
set wildignore=*.o,*.obj,*~,*.swp " ignore when tab completing:
set complete=.,w,t " Tab completion options
set backspace=indent,eol,start " Intuitive backspacing in insert mode
set shortmess=atI
set visualbell " get rid of the BEEP
set scrolloff=3 " Provide three lines of context
set autowrite " Automatically save before commands like :next
source $HOME/.vim/mappings.vim " Key Mappings
source $HOME/.vim/miscelaneous.vim
" source $HOME/.vim/number.vim " Toggle Relative or Abs Line numbers
source $HOME/.vim/wrapping.vim
source $HOME/.vim/copypaste.vim
source $HOME/.vim/backups.vim
source $HOME/.vim/looks.vim " Vim Appearance
source $HOME/.vim/searching.vim
source $HOME/.vim/abbreviations.vim
source $HOME/.vim/githelpers.vim
source $HOME/.vim/autocomplete.vim
source $HOME/.vim/autocorrect.vim " Mappings to autocorrect common misspelled words
source $HOME/.vim/session.vim " Saving & Resuming sessions
source $HOME/.vim/privates.vim
source $HOME/.vim/buffers.vim
source $HOME/.vim/tabularizing.vim
source $HOME/.vim/ruby-blocks.vim
source $HOME/.vim/vundle.vim " Vundles
source $HOME/.vim/splits.vim " Vundles
source $HOME/.vim/wildignore.vim " Wild Ignore for Command T