-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
52 lines (41 loc) · 1.22 KB
/
.vimrc
File metadata and controls
52 lines (41 loc) · 1.22 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
45
46
47
48
49
50
51
52
set expandtab
set tabstop=4
set shiftwidth=4
"colorscheme solarized
nnoremap k :bn<CR>
nnoremap j :bp<CR>
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'Shougo/vimproc.vim'
Plugin 'Shougo/unite.vim'
Plugin 'bling/vim-airline'
Plugin 'summerfruit256.vim'
Plugin 'majutsushi/tagbar'
Plugin 'altercation/vim-colors-solarized'
Plugin 'chase/vim-ansible-yaml'
Plugin 'scrooloose/syntastic'
Plugin 'davidhalter/jedi-vim'
call vundle#end()
filetype plugin indent on
nnoremap <leader>f :<C-u>Unite -buffer-name=files -start-insert buffer file_rec/async<cr>
set laststatus=2
let g:airline#extensions#tabline#enabled = 1
au BufNewFile,BufFilePre,BufRead *.md set filetype=markdown
" Tagbar plugin
nmap <F8> :TagbarToggle<CR>
syntax enable
set background=dark
colorscheme solarized
call togglebg#map("<F5>")
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_enable_signs=1
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:jedi#auto_initialization = 0