summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2017-04-02 13:25:36 +0200
committerFlorian Pritz <bluewind@xinu.at>2017-04-02 13:25:36 +0200
commit87e48f4427da2ab506ce07cff95a17235525f087 (patch)
treed3c30ef6b2e661f322cd59027531a8e76c91cd5b /.vimrc
parentae3742b30de7fa014a92a630fdc03c1849bf26e2 (diff)
downloaddotfiles-87e48f4427da2ab506ce07cff95a17235525f087.tar.gz
dotfiles-87e48f4427da2ab506ce07cff95a17235525f087.tar.xz
misc changes
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc14
1 files changed, 14 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index f82c723..c3441c7 100644
--- a/.vimrc
+++ b/.vimrc
@@ -86,6 +86,7 @@ Plugin 'tpope/vim-repeat'
Plugin 'SudoEdit'
Plugin 'rking/ag.vim'
+Plugin 'Chun-Yang/vim-action-ag'
Plugin 'scrooloose/nerdtree'
Plugin 'majutsushi/tagbar'
@@ -100,6 +101,8 @@ Plugin 'joonty/vim-phpqa.git'
Plugin 'jamessan/vim-gnupg'
+Plugin 'editorconfig/editorconfig-vim'
+
call vundle#end()
syntax on
filetype plugin indent on
@@ -184,6 +187,17 @@ inoremap <F2> <ESC>:NERDTreeToggle<CR>
let python_highlight_all = 1
+" Syntastic
+let g:syntastic_enable_perl_checker = 1
+
+let g:syntastic_always_populate_loc_list = 1
+let g:syntastic_auto_loc_list = 1
+autocmd BufRead,BufNewFile PKGBUILD let g:syntastic_auto_loc_list = 0
+let g:syntastic_check_on_open = 1
+let g:syntastic_check_on_wq = 0
+let g:syntastic_perl_perlcritic_post_args = '--verbose "\%s:\%f:\%l:\%c: \%p: \%m\n"'
+
+
" Ultisnips
let g:UltiSnipsJumpForwardTrigger="<tab>"
let g:UltiSnipsExpandTrigger="<c-j>"