All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

270 lines
8.9 KiB

8 years ago
8 years ago
7 years ago
7 years ago
8 years ago
6 years ago
6 years ago
6 years ago
8 years ago
8 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
6 years ago
7 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3. " Section Plugins {{{
  4. " Load vim-plug
  5. if empty(glob("~/.config/nvim/autoload/plug.vim"))
  6. execute '!curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
  7. endif
  8. call plug#begin()
  9. Plug 'tpope/vim-fugitive' " Git integration
  10. Plug 'tpope/vim-sensible' " Defaults everyone can agree on
  11. Plug 'tpope/vim-surround' " better handling of surrounding markers
  12. Plug 'tpope/vim-ragtag' " Enhancement of surround for html
  13. Plug 'tpope/vim-repeat' " repeat last command with .
  14. Plug 'tpope/vim-dadbod' " Modern database interface for Vim
  15. Plug 'tpope/vim-dispatch' " Needed for dadbod
  16. Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } " file tree
  17. Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }
  18. Plug 'scrooloose/nerdcommenter' " better commenting
  19. Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " completion engine
  20. Plug 'Shougo/neosnippet.vim' " snippet engine
  21. Plug 'Shougo/neosnippet-snippets' " snippets
  22. Plug 'easymotion/vim-easymotion' " better motion with leader
  23. Plug 'bling/vim-airline' " statusline
  24. Plug 'w0rp/ale' " asynchronous linting engine
  25. Plug 'godlygeek/tabular' " Align text on symbols
  26. Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " fuzzy file finder
  27. Plug 'junegunn/fzf.vim' " vim integration for fzf
  28. Plug 'airblade/vim-gitgutter' " git status in gutter column
  29. Plug 'radenling/vim-dispatch-neovim' " support for :Start command, needed in dadbod
  30. Plug 'lambdalisue/suda.vim' " As w!! did not work anymore in nvim
  31. " html / templates{{{
  32. Plug 'mattn/emmet-vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue', 'markdown'] } " emmet support for vim - easily create markdup wth CSS-like syntax
  33. Plug 'gregsexton/MatchTag', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " match tags in html, similar to paren support
  34. Plug 'othree/html5.vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " html5 support
  35. Plug 'lumiliet/vim-twig', { 'for': ['html'] } " twig syntax support
  36. "}}}
  37. " JavaScript{{{
  38. Plug 'gavocanov/vim-js-indent', { 'for': [ 'javascript' ]} " JavaScript indent support
  39. Plug 'moll/vim-node', { 'for': [ 'javascript', 'vue' ]} " node support
  40. "Plug 'othree/yajs.vim', { 'for': [ 'javascript', 'vue' ]} " JavaScript syntax plugin
  41. "Plug 'othree/es.next.syntax.vim', { 'for': [ 'javascript', 'vue' ]} " ES6 and beyond syntax
  42. Plug 'https://github.com/othree/jspc.vim', { 'for': [ 'javascript', 'vue' ]} " Function parameter completion
  43. Plug 'heavenshell/vim-jsdoc', { 'for': [ 'javascript', 'vue' ]} " Generate JSDoc comments
  44. Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html', 'vue' ] } " vue.js integration
  45. Plug 'carlitux/deoplete-ternjs', { 'for': [ 'javascript', 'vue', 'html' ], 'do': 'npm install -g tern' } " deoplete completion via ternjs
  46. "}}}
  47. " Go {{{
  48. Plug 'fatih/vim-go', { 'for': [ 'go', 'html', 'gohtmltmpl' ], 'do': ':GoInstallBinaries' } " go support
  49. Plug 'zchee/deoplete-go', { 'for': 'go' }
  50. "}}}
  51. " LaTeX{{{
  52. Plug 'lervag/vimtex', { 'for': 'tex' }
  53. "}}}
  54. " Markdown{{{
  55. Plug 'suan/vim-instant-markdown', { 'for': 'markdown' }
  56. Plug 'tpope/vim-markdown', { 'for': 'markdown'}
  57. "}}}
  58. " Colorschemes{{{
  59. Plug 'altercation/vim-colors-solarized'
  60. "}}}
  61. " TOML{{{
  62. Plug 'cespare/vim-toml', { 'for': 'toml' }
  63. "}}}
  64. " Haskell{{{
  65. Plug 'bitc/vim-hdevtools', { 'for': 'haskell' }
  66. Plug 'nbouscal/vim-stylish-haskell', { 'for': 'haskell' }
  67. "}}}
  68. " C/C++{{{
  69. Plug 'Rip-Rip/clang_complete', { 'for': ['c', 'cpp'], 'do': 'make install' }
  70. let g:clang_library_path='/usr/lib/llvm-6.0/lib/libclang-6.0.so.1'
  71. Plug 'rhysd/vim-clang-format', { 'for' : ['c', 'cpp', 'java'] }
  72. "}}}
  73. " PHP{{{
  74. "Plug 'shawncplus/phpcomplete.vim', { 'for': 'php', 'do': 'curl -Ss http://vim-php.com/phpctags/install/phpctags.phar > ~/bin/phpctags && chmod +x ~/bin/phpctags' }
  75. Plug 'lvht/phpcd.vim', { 'for': 'php', 'do': 'composer install' }
  76. Plug 'captbaritone/better-indent-support-for-php-with-html', { 'for': 'php' }
  77. Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates
  78. Plug 'Rican7/php-doc-modded', { 'for': 'php' } " Automatic phpdoc comments
  79. "}}}
  80. " Python{{{
  81. Plug 'davidhalter/jedi-vim', { 'for': 'python', 'do': 'pip install jedi' }
  82. Plug 'zchee/deoplete-jedi', { 'for': 'python' }
  83. Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' }
  84. "}}}
  85. " Java{{{
  86. Plug 'artur-shaik/vim-javacomplete2', { 'for': 'java' }
  87. "}}}
  88. " MIPS{{{
  89. Plug 'vim-scripts/mips.vim'
  90. "}}}
  91. " Rust {{{
  92. Plug 'sebastianmarkow/deoplete-rust', {'for': 'rust' }
  93. "}}}
  94. " All of your Plugins must be added before the following line
  95. call plug#end() " required
  96. filetype plugin indent on " required
  97. " }}}
  98. " THEME{{{
  99. colorscheme solarized
  100. set background=dark
  101. " Use light theme if whole shell is in light mode
  102. let themeenv=$THEME_SWITCHER
  103. if themeenv=='light'
  104. set background=light
  105. endif
  106. " }}}
  107. " SETTINGS{{{
  108. set number " line numbers
  109. set autoread " reload file automatically
  110. set colorcolumn=100 " highlight column 99
  111. set textwidth=100
  112. set history=1000
  113. set wildignore+=node_modules " ignore node_modules folder from file search
  114. set inccommand=split
  115. " make comments and HTML attributes italic
  116. highlight Comment cterm=italic
  117. highlight htmlArg cterm=italic
  118. set autoindent " automatically set indent of new line
  119. set smartindent
  120. set tabstop=4
  121. set shiftwidth=4
  122. set expandtab
  123. " toggle invisible characters
  124. set list
  125. set listchars=tab:→\ ,eol,trail:⋅,extends:❯,precedes:❮
  126. set showbreak=
  127. set ttyfast " faster redrawing
  128. set diffopt+=vertical
  129. set laststatus=2 " show the satus line all the time
  130. set so=7 " set 7 lines to the cursors - when moving vertical
  131. set wildmenu " enhanced command line completion
  132. set hidden " current buffer can be put into background
  133. set showcmd " show incomplete commands
  134. " set noshowmode " don't show which mode disabled for PowerLine
  135. set wildmode=list:longest " complete files like a shell
  136. set scrolloff=3 " lines of text around cursor
  137. set shell=$SHELL
  138. set cmdheight=1 " command bar height
  139. set title " set terminal title
  140. set foldmethod=marker" " folds are marked with {{{}}}
  141. " Uncomment the following to have Vim jump to the last position when
  142. " reopening a file
  143. if has("autocmd")
  144. au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
  145. \| exe "normal! g'\"" | endif
  146. endif
  147. " Setting for correct mips syntax highlighting
  148. au BufReadPost *.mips set syntax=mips
  149. " }}}
  150. " MAPPINGS{{{
  151. let mapleader = ","
  152. " CtrlP for Tags
  153. nnoremap <leader><C-p> :CtrlPTag<cr>
  154. " fzf bindings
  155. nmap <C-p> :Files<CR>
  156. nmap <leader><C-p> :Tags<CR>
  157. " Toggle NERDTree
  158. nmap <silent> <leader>k :NERDTreeToggle<cr>
  159. " expand to the path of the file in the current buffer
  160. nmap <silent> <leader>y :NERDTreeFind<cr>
  161. " Allow saving of files as sudo when I forgot to start vim using sudo.
  162. cmap w!! :w suda://%
  163. "Toggle set paste
  164. nmap <leader>tp :set paste!<cr>
  165. " scroll the viewport faster
  166. nnoremap <C-e> 3<C-e>
  167. nnoremap <C-y> 3<C-y>
  168. " ctrl-r in visual mode to replace selected text
  169. vnoremap <C-r> "hy:%s/<C-r>h//g<left><left>
  170. nmap <leader>an :ALENext<cr>
  171. "}}}
  172. " P L U G I N S{{{
  173. let NERDTreeShowHidden=1
  174. let g:airline_powerline_fonts = 1
  175. " ALE {{{
  176. let g:airline#extensions#ale#enabled = 1
  177. "}}}
  178. let vim_tags_ctags_binary='~/bin/phpctags'"
  179. " Java config
  180. autocmd FileType java setlocal omnifunc=javacomplete#Complete
  181. " Python-mode config
  182. let g:pymode_lint_on_write = 0
  183. " Vimtex{{{
  184. if !exists('g:neocomplete#sources#omni#input_patterns')
  185. let g:neocomplete#sources#omni#input_patterns = {}
  186. endif
  187. let g:neocomplete#sources#omni#input_patterns.tex =
  188. \ '\v\\%('
  189. \ . '\a*%(ref|cite)\a*%(\s*\[[^]]*\])?\s*\{[^{}]*'
  190. \ . '|includegraphics%(\s*\[[^]]*\])?\s*\{[^{}]*'
  191. \ . '|%(include|input)\s*\{[^{}]*'
  192. \ . ')'
  193. "}}}
  194. " C/C++
  195. autocmd FileType c,cpp,objc nnoremap <buffer><Leader>f :<C-u>ClangFormat<CR>
  196. autocmd FileType c,cpp,objc vnoremap <buffer><Leader>f :ClangFormat<CR>
  197. "}}}
  198. " Completion {{{
  199. " Use deoplete.
  200. let g:deoplete#enable_at_startup = 1
  201. " Use TAB to cycle between matches
  202. inoremap <silent><expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
  203. inoremap <silent><expr><s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
  204. let g:deoplete#ignore_sources = get(g:, 'deoplete#ignore_sources', {})
  205. let g:deoplete#ignore_sources.php = ['omni']
  206. " Neosnippet Settings
  207. imap <C-k> <Plug>(neosnippet_expand_or_jump)
  208. smap <C-k> <Plug>(neosnippet_expand_or_jump)
  209. xmap <C-k> <Plug>(neosnippet_expand_target)
  210. " SuperTab like snippets behavior.
  211. "imap <expr><TAB>
  212. " \ pumvisible() ? "\<C-n>" :
  213. " \ neosnippet#expandable_or_jumpable() ?
  214. " \ "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
  215. smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
  216. \ "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
  217. " For conceal markers.
  218. if has('conceal')
  219. set conceallevel=2 concealcursor=niv
  220. endif
  221. let g:neosnippet#snippets_directory = '~/.dotfiles/vim/neosnippets'
  222. "}}}