2012-05-29 16:12:10 -04:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2016-05-14 08:22:57 -04:00
|
|
|
" Important:
|
2012-05-29 16:12:10 -04:00
|
|
|
" This requries that you install https://github.com/amix/vimrc !
|
|
|
|
"
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
|
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => Load pathogen paths
|
|
|
|
""""""""""""""""""""""""""""""
|
2017-03-27 15:27:30 -04:00
|
|
|
let s:vim_runtime = expand('<sfile>:p:h')."/.."
|
|
|
|
call pathogen#infect(s:vim_runtime.'/sources_forked/{}')
|
|
|
|
call pathogen#infect(s:vim_runtime.'/sources_non_forked/{}')
|
2017-05-20 05:33:48 -04:00
|
|
|
call pathogen#infect(s:vim_runtime.'/my_plugins/{}')
|
2012-05-29 17:32:24 -04:00
|
|
|
call pathogen#helptags()
|
2012-05-29 16:12:10 -04:00
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => bufExplorer plugin
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
let g:bufExplorerDefaultHelp=0
|
|
|
|
let g:bufExplorerShowRelativePath=1
|
|
|
|
let g:bufExplorerFindActive=1
|
|
|
|
let g:bufExplorerSortBy='name'
|
|
|
|
map <leader>o :BufExplorer<cr>
|
|
|
|
|
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => MRU plugin
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
let MRU_Max_Entries = 400
|
|
|
|
map <leader>f :MRU<CR>
|
|
|
|
|
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => CTRL-P
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
let g:ctrlp_working_path_mode = 0
|
2012-08-15 22:29:05 -04:00
|
|
|
|
2012-05-29 16:12:10 -04:00
|
|
|
let g:ctrlp_map = '<c-f>'
|
2014-04-18 08:52:50 -04:00
|
|
|
map <leader>j :CtrlP<cr>
|
2012-08-15 22:29:05 -04:00
|
|
|
map <c-b> :CtrlPBuffer<cr>
|
|
|
|
|
|
|
|
let g:ctrlp_max_height = 20
|
|
|
|
let g:ctrlp_custom_ignore = 'node_modules\|^\.DS_Store\|^\.git\|^\.coffee'
|
2012-05-29 16:12:10 -04:00
|
|
|
|
|
|
|
|
2013-04-13 13:45:21 -04:00
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => ZenCoding
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" Enable all functions in all modes
|
|
|
|
let g:user_zen_mode='a'
|
|
|
|
|
|
|
|
|
2012-05-29 16:12:10 -04:00
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => snipMate (beside <TAB> support <CTRL-j>)
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
ino <c-j> <c-r>=snipMate#TriggerSnippet()<cr>
|
|
|
|
snor <c-j> <esc>i<right><c-r>=snipMate#TriggerSnippet()<cr>
|
|
|
|
|
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
" => Vim grep
|
|
|
|
""""""""""""""""""""""""""""""
|
|
|
|
let Grep_Skip_Dirs = 'RCS CVS SCCS .svn generated'
|
|
|
|
set grepprg=/bin/grep\ -nH
|
|
|
|
|
|
|
|
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => Nerd Tree
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2015-02-12 19:19:27 -05:00
|
|
|
let g:NERDTreeWinPos = "right"
|
2015-07-13 06:38:38 -04:00
|
|
|
let NERDTreeShowHidden=0
|
|
|
|
let NERDTreeIgnore = ['\.pyc$', '__pycache__']
|
2015-02-24 05:45:22 -05:00
|
|
|
let g:NERDTreeWinSize=35
|
2012-05-29 16:12:10 -04:00
|
|
|
map <leader>nn :NERDTreeToggle<cr>
|
2016-12-16 20:20:55 -05:00
|
|
|
map <leader>nb :NERDTreeFromBookmark<Space>
|
2012-05-29 16:12:10 -04:00
|
|
|
map <leader>nf :NERDTreeFind<cr>
|
|
|
|
|
|
|
|
|
2013-04-14 11:48:31 -04:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => vim-multiple-cursors
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2013-04-16 09:27:16 -04:00
|
|
|
let g:multi_cursor_next_key="\<C-s>"
|
2013-04-14 11:48:31 -04:00
|
|
|
|
|
|
|
|
2012-05-29 16:12:10 -04:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => surround.vim config
|
2017-08-16 05:16:53 -04:00
|
|
|
" Annotate strings with gettext
|
2012-05-29 16:12:10 -04:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2012-08-15 22:29:05 -04:00
|
|
|
vmap Si S(i_<esc>f)
|
|
|
|
au FileType mako vmap Si S"i${ _(<esc>2f"a) }<esc>
|
2013-11-16 14:45:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2016-05-14 08:22:57 -04:00
|
|
|
" => lightline
|
2013-11-16 14:45:48 -05:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2016-05-14 08:22:57 -04:00
|
|
|
let g:lightline = {
|
|
|
|
\ 'colorscheme': 'wombat',
|
|
|
|
\ }
|
|
|
|
|
|
|
|
let g:lightline = {
|
|
|
|
\ 'colorscheme': 'wombat',
|
|
|
|
\ 'active': {
|
|
|
|
\ 'left': [ ['mode', 'paste'],
|
2016-05-14 08:26:42 -04:00
|
|
|
\ ['fugitive', 'readonly', 'filename', 'modified'] ],
|
|
|
|
\ 'right': [ [ 'lineinfo' ], ['percent'] ]
|
2016-05-14 08:22:57 -04:00
|
|
|
\ },
|
|
|
|
\ 'component': {
|
|
|
|
\ 'readonly': '%{&filetype=="help"?"":&readonly?"🔒":""}',
|
|
|
|
\ 'modified': '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}',
|
|
|
|
\ 'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}'
|
|
|
|
\ },
|
|
|
|
\ 'component_visible_condition': {
|
|
|
|
\ 'readonly': '(&filetype!="help"&& &readonly)',
|
|
|
|
\ 'modified': '(&filetype!="help"&&(&modified||!&modifiable))',
|
|
|
|
\ 'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())'
|
|
|
|
\ },
|
|
|
|
\ 'separator': { 'left': ' ', 'right': ' ' },
|
|
|
|
\ 'subseparator': { 'left': ' ', 'right': ' ' }
|
|
|
|
\ }
|
2015-12-17 10:44:42 -05:00
|
|
|
|
2013-12-28 13:23:13 -05:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => Vimroom
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2013-12-29 05:37:14 -05:00
|
|
|
let g:goyo_width=100
|
2014-01-06 19:25:41 -05:00
|
|
|
let g:goyo_margin_top = 2
|
|
|
|
let g:goyo_margin_bottom = 2
|
2013-12-29 05:37:14 -05:00
|
|
|
nnoremap <silent> <leader>z :Goyo<cr>
|
2014-02-08 05:05:16 -05:00
|
|
|
|
|
|
|
|
2015-12-17 10:44:42 -05:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => Vim-go
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
let g:go_fmt_command = "goimports"
|
|
|
|
|
|
|
|
|
2014-02-08 05:05:16 -05:00
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => Syntastic (syntax checker)
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
2015-12-17 10:44:42 -05:00
|
|
|
" Python
|
2014-02-08 05:05:16 -05:00
|
|
|
let g:syntastic_python_checkers=['pyflakes']
|
2015-12-17 10:44:42 -05:00
|
|
|
|
|
|
|
" Javascript
|
2015-07-13 06:21:10 -04:00
|
|
|
let g:syntastic_javascript_checkers = ['jshint']
|
|
|
|
|
2015-12-17 10:44:42 -05:00
|
|
|
" Go
|
|
|
|
let g:syntastic_auto_loc_list = 1
|
|
|
|
let g:syntastic_go_checkers = ['go', 'golint', 'errcheck']
|
|
|
|
|
2015-07-13 06:21:10 -04:00
|
|
|
" Custom CoffeeScript SyntasticCheck
|
|
|
|
func! SyntasticCheckCoffeescript()
|
|
|
|
let l:filename = substitute(expand("%:p"), '\(\w\+\)\.coffee', '.coffee.\1.js', '')
|
2015-12-08 08:19:59 -05:00
|
|
|
execute "tabedit " . l:filename
|
2015-07-13 06:21:10 -04:00
|
|
|
execute "SyntasticCheck"
|
|
|
|
execute "Errors"
|
|
|
|
endfunc
|
2016-07-03 07:53:55 -04:00
|
|
|
nnoremap <silent> <leader>c :call SyntasticCheckCoffeescript()<cr>
|
2015-07-13 06:42:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
" => Git gutter (Git diff)
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
let g:gitgutter_enabled=0
|
|
|
|
nnoremap <silent> <leader>d :GitGutterToggle<cr>
|