-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.vimrc
74 lines (64 loc) · 2.39 KB
/
.vimrc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
syntax on
colorscheme badwolf
set cursorline " highlight current line
set expandtab " use spaces instead of tabs
set ignorecase " Make searches case-insensitive.
set incsearch " But do highlight as you type your search.
set laststatus=2 " last window always has a statusline
set mouse=a " enable the mouse
set nobackup " I manage my backups
set hlsearch " highlight searched phrases.
set noswapfile " don't let it create swap files
set nowrap " don't wrap text
set number " show line numbers
set pastetoggle=<F2> " switch to paste mode
set ruler " Always show info along bottom.
set shiftround " always indent/outdent to the nearest tabstop
set shiftwidth=4 " indent/outdent by 4 columns
set showcmd " show command in bottom bar
set showmatch " highlight matching [{()}]
set smarttab " use tabs at the start of a line, spaces elsewhere
set softtabstop=4 " unify
set tabstop=4 " tab spacing
set t_Co=256 " enable 256-color mode.
set spell " turn on spell checking
set backspace=indent,eol,start "make backspace work like anything else
" Vundle setup
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" PLACE ADDONS HERE "
Plugin 'bash-support.vim'
Plugin 'bling/vim-airline'
Plugin 'scrooloose/syntastic'
Plugin 'SuperTab'
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter'
Plugin 'scrooloose/nerdtree'
Plugin 'kien/ctrlp.vim'
Plugin 'rodjek/vim-puppet'
Plugin 'honza/vim-snippets'
Plugin 'vim-coffee-script'
Plugin 'davidhalter/jedi-vim'
Plugin 'Indent-Guides'
Plugin 'pangloss/vim-javascript'
Plugin 'digitaltoad/vim-jade'
Plugin 'plasticboy/vim-markdown'
Plugin 'flazz/vim-colorschemes'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required!
let g:syntastic_enable_signs=1
let g:syntastic_auto_jump=1
let g:syntastic_stl_format = '[%E{Err: %fe #%e}%B{, }%W{Warn: %fw #%w}]'
let g:vim_markdown_folding_disabled=1
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
set pastetoggle=<F2>
syntax on
" Key Maps
map <C-n> :NERDTreeToggle<CR>