aboutsummaryrefslogtreecommitdiff
path: root/.vim/plugins.vim
blob: d748983280e7687e32658cfc845e034af6eb2ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" vim-blade
au BufNewFile,BufRead *.blade.php set filetype=blade

" git-gutter
let g:gitgutter_max_signs = 100

" additional syntastic checkers
let g:syntastic_enable_perl_checker = 1
let g:syntastic_perl_checkers = ["perl", "perlcritic"]

" set options for syntastic checkers
let g:syntastic_perl_perlcritic_args = "--brutal"

" enable CamelCaseMotion
call camelcasemotion#CreateMotionMappings('<silent>')

" Enable unicode abbreviations for prettier Perl 6 code
let raku_unicode_abbrevs = 1

" UltiSnips
let g:snips_author = "Patrick Spek <p.spek@tyil.work>"

" PDV
let g:pdv_template_dir = $HOME ."/.vim/snippets/php/doc"