]> git.friedersdorff.com Git - max/dotfiles.git/blob - vim/.vimrc
Do not track .config/sway/config
[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 Plugin 'tmhedberg/SimpylFold'
35 Plugin 'saltstack/salt-vim'
36 Plugin 'fatih/vim-go'
37
38 " All of your Plugins must be added before the following line
39 call vundle#end()            " required
40 filetype plugin indent on    " required
41
42 " Swapfiles
43 set backupdir=$HOME/.vim/backup//
44
45 " Random look and feel stuff
46 syntax on
47 set background=dark
48 colorscheme molokai
49 " set expandtab
50 " set shiftwidth=2
51 " set softtabstop=2
52 set relativenumber
53
54 let g:html_indent_inctags = "html,body,head,tbody"
55 let g:indentLine_color_term = 200
56
57 " syntastic
58 set statusline+=%#warningmsg#
59 set statusline+=%{SyntasticStatuslineFlag()}
60 set statusline+=%*
61
62 let g:syntastic_always_populate_loc_list = 1
63 let g:syntastic_auto_loc_list = 2
64 let g:syntastic_check_on_open = 1
65 let g:syntastic_check_on_wq = 1
66 let g:syntastic_javascript_checkers = ['eslint']
67 let g:syntastic_python_python_exec = '/usr/bin/python3'
68 let g:syntastic_python_checkers = ['flake8']
69 let g:syntastic_aggregate_errors = 1
70
71 " Syntastic C++11
72 let g:syntastic_cpp_compiler = 'g++'
73 let g:syntastic_cpp_compiler_options = '-std=c++14'
74
75 set laststatus=2
76 " Set this to 1 if powerline fonts are installed.
77 let g:airline_powerline_fonts = 0
78 set timeoutlen=1000
79 let g:airline#extensions#tabline#enabled = 1
80 let g:airline#extensions#tabline#fnamemod = ':t'
81
82 " Setting wildignore
83 set wildignore+=venv
84 set wildignore+=.git,.hg.svn
85
86 " CtrlP
87 let g:ctrlp_working_path_mode = 'r'
88
89 " Editorconfig
90 let g:EditorConfig_exclude_patterns = ['fugitive://.*']
91
92 " latex-box
93 let g:LatexBox_quickfix = 4
94 let g:LatexBox_viewer = "mupdf"
95
96 " clang fix
97 let g:clang_user_options='|| exit0'
98
99 " Color 80th column
100 highlight ColorColumn ctermbg=0
101 set colorcolumn=80
102
103 " Octave Syntax
104 " augroup filetypedetect
105 "   au! BufRead,BufNewFile *.m,*.oct set filetype=octave
106 " augroup END 
107
108 " vimux
109 map C :VimuxPromptCommand<CR>
110
111 " Quiet netrw
112 let g:netrw_silent = 1
113
114 " Set folding
115 set foldmethod=syntax