-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
40 lines (31 loc) · 1.21 KB
/
vimrc
File metadata and controls
40 lines (31 loc) · 1.21 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
syntax on
colorscheme solarized
set hidden
set nowrap " don't wrap lines
set tabstop=4 " a tab is four spaces
set backspace=indent,eol,start
" allow backspacing over everything in insert mode
set autoindent " always set autoindenting on
set copyindent " copy the previous indentation on autoindenting
set number " always show line numbers
set shiftwidth=2 " number of spaces to use for autoindenting
set shiftround " use multiple of shiftwidth when indenting with '<' and '>'
set showmatch " set show matching parenthesis
set ignorecase " ignore case when searching
set smartcase " ignore case if search pattern is all lowercase,
" case-sensitive otherwise
set smarttab " insert tabs on the start of a line according to
" shiftwidth, not tabstop
set hlsearch " highlight search terms
set incsearch " show search matches as you type
set title
call plug#begin('~/.vim/plugged')
Plug 'scrooloose/nerdtree'
Plug 'tmhedberg/matchit'
Plug 'jszakmeister/vim-togglecursor'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'powerline/powerline'
Plug 'valloric/youcompleteme'
Plug 'ervandew/supertab'
Plug 'tpope/vim-fugitive'
call plug#end()