2 :let maplocalleader = "\\"
4 set nocompatible " be iMproved, required
5 filetype off " required
7 " set the runtime path to include Vundle and initialize
8 set rtp+=~/.vim/bundle/Vundle.vim
10 " alternatively, pass a path where Vundle should install plugins
11 " call vundle#begin('~/some/path/here')
12 Plugin 'gmarik/Vundle.vim'
13 Plugin 'Yggdroot/indentLine'
14 Plugin 'scrooloose/syntastic'
15 Plugin 'docunext/closetag.vim'
16 Plugin 'vim-airline/vim-airline'
17 Plugin 'vim-airline/vim-airline-themes'
18 Plugin 'airblade/vim-gitgutter'
19 Plugin 'editorconfig/editorconfig-vim'
20 Plugin 'LaTeX-Box-Team/LaTeX-Box'
21 Plugin 'hynek/vim-python-pep8-indent'
22 Plugin 'vim-scripts/octave.vim--'
23 Plugin 'vim-scripts/MatlabFilesEdition'
24 Plugin 'tmhedberg/SimpylFold'
25 Plugin 'saltstack/salt-vim'
27 Plugin 'gu-fan/riv.vim'
28 Plugin 'lepture/vim-jinja'
29 Plugin 'aklt/plantuml-syntax'
30 Plugin 'vim-python/python-syntax'
31 Plugin 'majutsushi/tagbar'
32 Plugin 'altercation/vim-colors-solarized'
33 Plugin 'ctrlpvim/ctrlp.vim'
34 Plugin 'Chiel92/vim-autoformat'
36 " All of your Plugins must be added before the following line
37 call vundle#end() " required
38 filetype plugin indent on " required
41 set backupdir=$HOME/.vim/backup//
43 " Random look and feel stuff
47 let g:solarized_termtrans = 1
56 let g:html_indent_inctags = "html,body,head,tbody"
57 let g:indentLine_color_term = 5
60 set statusline+=%#warningmsg#
61 set statusline+=%{SyntasticStatuslineFlag()}
64 let g:syntastic_always_populate_loc_list = 1
65 let g:syntastic_auto_loc_list = 2
66 let g:syntastic_check_on_open = 1
67 let g:syntastic_check_on_wq = 1
68 let g:syntastic_javascript_checkers = ['eslint']
69 let g:syntastic_python_python_exec = '/usr/bin/python3'
70 let g:syntastic_python_checkers = ['python', 'flake8']
71 let g:syntastic_python_flake8_args='--config=/home/max/.config/flake8'
72 let g:syntastic_aggregate_errors = 1
75 let g:syntastic_cpp_compiler = 'g++'
76 let g:syntastic_cpp_compiler_options = '-std=c++14'
79 " Set this to 1 if powerline fonts are installed.
80 let g:airline_powerline_fonts = 1
82 let g:airline#extensions#tabline#enabled = 1
83 let g:airline#extensions#tabline#fnamemod = ':t'
87 set wildignore+=.git,.hg.svn
91 let g:EditorConfig_exclude_patterns = ['fugitive://.*']
94 let g:LatexBox_quickfix = 4
95 let g:LatexBox_viewer = "mupdf"
98 let g:clang_user_options='|| exit0'
101 highlight ColorColumn ctermbg=7
102 let &colorcolumn="80,100".join(range(120,999),",")
105 " augroup filetypedetect
106 " au! BufRead,BufNewFile *.m,*.oct set filetype=octave
110 let g:netrw_silent = 1
111 let g:netrw_liststyle = 3
112 let g:netrw_banner = 0
113 let g:netrw_browse_split = 4
114 let g:netrw_winsize = 20
117 set foldmethod=syntax
121 " Better saving behaviour for go
122 let g:go_fmt_experimental = 1
125 set list listchars=trail:•,extends:>,precedes:<,nbsp:␣,eol:↲,tab:→\,
127 " Force python3 for rst tables plugin
128 let g:rst_prefer_python_version = 2
130 " Python syntax highlighting
131 let g:python_highlight_builtins = 1
132 let g:python_highlight_builtin_objs = 1
133 let g:python_highlight_builtin_types = 1
134 let g:python_highlight_builtin_funcs = 1
135 let g:python_highlight_builtin_kwarg = 1
136 let g:python_highlight_exceptions = 1
137 let g:python_highlight_string_formatting = 1
138 let g:python_highlight_string_format = 1
139 let g:python_highlight_string_templates = 1
140 let g:python_highlight_class_vars = 1
141 let g:python_highlight_operators = 1
144 autocmd FileType python setlocal foldmethod=indent foldnestmax=2
147 hi MatchParen cterm=underline ctermbg=none ctermfg=none
149 " Activate tagbar with F8
150 nmap <F8> :TagbarToggle<CR>
153 let g:pydocstring_doq_path= "/home/max/.local/bin/doq"
158 noremap <Leader>y "+y
159 noremap <Leader>p "+p
161 let g:ctrlp_cache_dir = $HOME . '/.cache/ctrlp'
163 let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
167 let g:formatters_python = ['autopep8']