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.

235 lines
7.8 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. set nocompatible " be iMproved, required
  2. filetype off " required
  3. " Load vim-plug
  4. if empty(glob("~/.vim/autoload/plug.vim"))
  5. execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim'
  6. endif
  7. call plug#begin()
  8. " alternatively, pass a path where Vundle should install plugins
  9. "call vundle#begin('~/some/path/here')
  10. " let Vundle manage Vundle, required
  11. Plug 'VundleVim/Vundle.vim'
  12. " The following are examples of different formats supported.
  13. " Keep Plugin commands between vundle#begin/end.
  14. " plugin on GitHub repo
  15. Plug 'tpope/vim-fugitive'
  16. " plugin from http://vim-scripts.org/vim/scripts.html
  17. Plug 'L9'
  18. " Git plugin not hosted on GitHub
  19. Plug 'tpope/vim-sensible'
  20. Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
  21. Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }
  22. Plug 'kien/ctrlp.vim'
  23. Plug 'scrooloose/nerdcommenter'
  24. "Plug 'myusuf3/numbers.vim'
  25. Plug 'Shougo/neocomplete.vim'
  26. Plug 'Shougo/neosnippet.vim'
  27. Plug 'Shougo/neosnippet-snippets'
  28. Plug 'easymotion/vim-easymotion'
  29. Plug 'bling/vim-airline'
  30. Plug 'tpope/vim-ragtag'
  31. Plug 'surround.vim'
  32. Plug 'tpope/vim-repeat'
  33. Plug 'vim-syntastic/syntastic'
  34. Plug 'altercation/vim-colors-solarized'
  35. " html / templates
  36. Plug 'mattn/emmet-vim', { 'for': ['html', 'php', 'gohtmltmpl'] } " emmet support for vim - easily create markdup wth CSS-like syntax
  37. Plug 'gregsexton/MatchTag', { 'for': ['html', 'php', 'gohtmltmpl'] } " match tags in html, similar to paren support
  38. Plug 'othree/html5.vim', { 'for': ['html', 'php', 'gohtmltmpl'] } " html5 support
  39. " JavaScript
  40. Plug 'gavocanov/vim-js-indent', { 'for': 'javascript' } " JavaScript indent support
  41. Plug 'moll/vim-node', { 'for': 'javascript' } " node support
  42. Plug 'othree/yajs.vim', { 'for': 'javascript' } " JavaScript syntax plugin
  43. Plug 'othree/es.next.syntax.vim', { 'for': 'javascript' } " ES6 and beyond syntax
  44. Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html' ] } " vue.js integration
  45. " Go
  46. Plug 'fatih/vim-go', { 'for': [ 'go', 'html', 'gohtmltmpl' ] } " go support
  47. " LaTeX
  48. Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' }
  49. " Markdown
  50. Plug 'suan/vim-instant-markdown', { 'for': 'markdown' }
  51. Plug 'tpope/vim-markdown', { 'for': 'markdown'}
  52. " Colorschemes
  53. Plug 'altercation/vim-colors-solarized'
  54. " All of your Plugins must be added before the following line
  55. call plug#end() " required
  56. filetype plugin indent on " required
  57. " To ignore plugin indent changes, instead use:
  58. "filetype plugin on
  59. " T H E M E
  60. colorscheme solarized
  61. set background=dark
  62. " S E T T I N G S
  63. set number
  64. set autoread
  65. set history=1000
  66. " make comments and HTML attributes italic
  67. highlight Comment cterm=italic
  68. highlight htmlArg cterm=italic
  69. set autoindent " automatically set indent of new line
  70. set smartindent
  71. set tabstop=4
  72. set shiftwidth=4
  73. set expandtab
  74. " toggle invisible characters
  75. set list
  76. set listchars=tab:→\ ,eol:¬,trail:⋅,extends:❯,precedes:❮
  77. set showbreak=↪
  78. set ttyfast " faster redrawing
  79. set diffopt+=vertical
  80. set laststatus=2 " show the satus line all the time
  81. set so=7 " set 7 lines to the cursors - when moving vertical
  82. set wildmenu " enhanced command line completion
  83. set hidden " current buffer can be put into background
  84. set showcmd " show incomplete commands
  85. " set noshowmode " don't show which mode disabled for PowerLine
  86. set wildmode=list:longest " complete files like a shell
  87. set scrolloff=3 " lines of text around cursor
  88. set shell=$SHELL
  89. set cmdheight=1 " command bar height
  90. set title " set terminal title
  91. " Uncomment the following to have Vim jump to the last position when
  92. " reopening a file
  93. if has("autocmd")
  94. au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
  95. \| exe "normal! g'\"" | endif
  96. endif
  97. " P L U G I N S
  98. let NERDTreeShowHidden=1
  99. let g:airline_powerline_fonts = 1
  100. let g:syntastic_always_populate_loc_list = 1
  101. let g:syntastic_auto_loc_list = 1
  102. let g:syntastic_check_on_open = 1
  103. let g:syntastic_check_on_wq = 0
  104. let g:syntastic_aggregate_errors = 1
  105. set statusline+=%#warningmsg#
  106. set statusline+=%{SyntasticStatuslineFlag()}
  107. set statusline+=%*
  108. " M A P P I N G S
  109. let mapleader = ","
  110. " CtrlP for Tags
  111. nnoremap <leader><C-p> :CtrlPTag<cr>
  112. " Toggle NERDTree
  113. nmap <silent> <leader>k :NERDTreeToggle<cr>
  114. " expand to the path of the file in the current buffer
  115. nmap <silent> <leader>y :NERDTreeFind<cr>
  116. " Allow saving of files as sudo when I forgot to start vim using sudo.
  117. cmap w!! w !sudo tee > /dev/null %
  118. "Toggle set paste
  119. nmap <leader>tp :set paste!<cr>
  120. " N E O C O M P L E T E
  121. "Note: This option must be set in .vimrc(_vimrc). NOT IN .gvimrc(_gvimrc)!
  122. " Disable AutoComplPop.
  123. let g:acp_enableAtStartup = 0
  124. " Use neocomplete.
  125. let g:neocomplete#enable_at_startup = 1
  126. " Use smartcase.
  127. let g:neocomplete#enable_smart_case = 1
  128. " Set minimum syntax keyword length.
  129. let g:neocomplete#sources#syntax#min_keyword_length = 3
  130. " Define dictionary.
  131. let g:neocomplete#sources#dictionary#dictionaries = {
  132. \ 'default' : '',
  133. \ 'vimshell' : $HOME.'/.vimshell_hist',
  134. \ 'scheme' : $HOME.'/.gosh_completions'
  135. \ }
  136. " Define keyword.
  137. if !exists('g:neocomplete#keyword_patterns')
  138. let g:neocomplete#keyword_patterns = {}
  139. endif
  140. let g:neocomplete#keyword_patterns['default'] = '\h\w*'
  141. " Plugin key-mappings.
  142. inoremap <expr><C-g> neocomplete#undo_completion()
  143. inoremap <expr><C-l> neocomplete#complete_common_string()
  144. " Recommended key-mappings.
  145. " <CR>: close popup and save indent.
  146. inoremap <silent> <CR> <C-r>=<SID>my_cr_function()<CR>
  147. function! s:my_cr_function()
  148. return (pumvisible() ? "\<C-y>" : "" ) . "\<CR>"
  149. " For no inserting <CR> key.
  150. "return pumvisible() ? "\<C-y>" : "\<CR>"
  151. endfunction
  152. " <TAB>: completion.
  153. inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
  154. " <C-h>, <BS>: close popup and delete backword char.
  155. inoremap <expr><C-h> neocomplete#smart_close_popup()."\<C-h>"
  156. inoremap <expr><BS> neocomplete#smart_close_popup()."\<C-h>"
  157. " Close popup by <Space>.
  158. "inoremap <expr><Space> pumvisible() ? "\<C-y>" : "\<Space>"
  159. " AutoComplPop like behavior.
  160. "let g:neocomplete#enable_auto_select = 1
  161. " Shell like behavior(not recommended).
  162. "set completeopt+=longest
  163. "let g:neocomplete#enable_auto_select = 1
  164. "let g:neocomplete#disable_auto_complete = 1
  165. "inoremap <expr><TAB> pumvisible() ? "\<Down>" : "\<C-x>\<C-u>"
  166. " Enable omni completion.
  167. autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
  168. autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
  169. autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
  170. autocmd FileType python setlocal omnifunc=pythoncomplete#Complete
  171. autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
  172. " Enable heavy omni completion.
  173. if !exists('g:neocomplete#sources#omni#input_patterns')
  174. let g:neocomplete#sources#omni#input_patterns = {}
  175. endif
  176. "let g:neocomplete#sources#omni#input_patterns.php = '[^. \t]->\h\w*\|\h\w*::'
  177. "let g:neocomplete#sources#omni#input_patterns.c = '[^.[:digit:] *\t]\%(\.\|->\)'
  178. "let g:neocomplete#sources#omni#input_patterns.cpp = '[^.[:digit:] *\t]\%(\.\|->\)\|\h\w*::'
  179. " For perlomni.vim setting.
  180. " https://github.com/c9s/perlomni.vim
  181. let g:neocomplete#sources#omni#input_patterns.perl = '\h\w*->\h\w*\|\h\w*::'
  182. " Plugin key-mappings.
  183. imap <C-k> <Plug>(neosnippet_expand_or_jump)
  184. smap <C-k> <Plug>(neosnippet_expand_or_jump)
  185. xmap <C-k> <Plug>(neosnippet_expand_target)
  186. " SuperTab like snippets behavior.
  187. "imap <expr><TAB>
  188. " \ pumvisible() ? "\<C-n>" :
  189. " \ neosnippet#expandable_or_jumpable() ?
  190. " \ "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
  191. smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
  192. \ "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
  193. " For conceal markers.
  194. if has('conceal')
  195. set conceallevel=2 concealcursor=niv
  196. endif
  197. let g:neosnippet#snippets_directory = '~/.dotfiles/vim/neosnippets'