]> git.friedersdorff.com Git - max/dotfiles.git/blob - vim/.vimrc
Vimux and better syntastic linting
[max/dotfiles.git] / vim / .vimrc
1 :let mapleader = "-"
2 :let maplocalleader = "\\"
3
4 set nocompatible              " be iMproved, required
5 filetype off                  " required
6
7 " set the runtime path to include Vundle and initialize
8 set rtp+=~/.vim/bundle/Vundle.vim
9 call vundle#begin()
10 " alternatively, pass a path where Vundle should install plugins
11 " call vundle#begin('~/some/path/here')
12 Plugin 'gmarik/Vundle.vim'
13 Plugin 'jelera/vim-javascript-syntax' 
14 Plugin 'noahfrederick/vim-noctu'
15 Plugin 'pangloss/vim-javascript'
16 Plugin 'Yggdroot/indentLine'
17 Plugin 'Raimondi/delimitMate'
18 Plugin 'scrooloose/syntastic'
19 Plugin 'ternjs/tern_for_vim'
20 Plugin 'docunext/closetag.vim'
21 Plugin 'vim-airline/vim-airline'
22 Plugin 'vim-airline/vim-airline-themes'
23 Plugin 'airblade/vim-gitgutter'
24 Plugin 'tpope/vim-fugitive'
25 Plugin 'kien/ctrlp.vim'
26 Plugin 'editorconfig/editorconfig-vim'
27 Plugin 'LaTeX-Box-Team/LaTeX-Box'
28 Plugin 'ajh17/VimCompletesMe'
29 Plugin 'hynek/vim-python-pep8-indent'
30 Plugin 'vim-scripts/octave.vim--'
31 Plugin 'vim-scripts/MatlabFilesEdition'
32 Plugin 'flazz/vim-colorschemes'
33 Plugin 'benmills/vimux'
34
35 " All of your Plugins must be added before the following line
36 call vundle#end()            " required
37 filetype plugin indent on    " required
38
39 " Random look and feel stuff
40 syntax on
41 set background=dark
42 colorscheme molokai
43 set expandtab
44 set shiftwidth=2
45 set softtabstop=2
46 set number
47
48 let g:html_indent_inctags = "html,body,head,tbody"
49 let g:indentLine_color_term = 200
50
51 " syntastic
52 set statusline+=%#warningmsg#
53 set statusline+=%{SyntasticStatuslineFlag()}
54 set statusline+=%*
55
56 let g:syntastic_always_populate_loc_list = 1
57 let g:syntastic_auto_loc_list = 2
58 let g:syntastic_check_on_open = 1
59 let g:syntastic_check_on_wq = 1
60 let g:syntastic_javascript_checkers = ['eslint']
61 let g:syntastic_python_python_exec = '/usr/bin/python3'
62 let g:syntastic_python_checkers = ['flake8']
63 let g:syntastic_aggregate_errors = 1
64
65 " Syntastic C++11
66 let g:syntastic_cpp_compiler = 'g++'
67 let g:syntastic_cpp_compiler_options = '-std=c++11'
68
69 set laststatus=2
70 " Set this to 1 if powerline fonts are installed.
71 let g:airline_powerline_fonts = 0
72 set timeoutlen=1000
73 let g:airline#extensions#tabline#enabled = 1
74 let g:airline#extensions#tabline#fnamemod = ':t'
75
76 " Setting wildignore
77 set wildignore+=venv
78 set wildignore+=.git,.hg.svn
79
80 " CtrlP
81 let g:ctrlp_working_path_mode = 'r'
82
83 " Editorconfig
84 let g:EditorConfig_exclude_patterns = ['fugitive://.*']
85
86 " latex-box
87 let g:LatexBox_quickfix = 4
88 let g:LatexBox_viewer = "mupdf"
89
90 " clang fix
91 let g:clang_user_options='|| exit0'
92
93 " Color 80th column
94 highlight ColorColumn ctermbg=0
95 set colorcolumn=80
96
97 " Octave Syntax
98 " augroup filetypedetect
99 "   au! BufRead,BufNewFile *.m,*.oct set filetype=octave
100 " augroup END 
101
102 " vimux
103 map C :VimuxPromptCommand<CR>