summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc17
1 files changed, 16 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index c3441c7..7c8858b 100644
--- a/.vimrc
+++ b/.vimrc
@@ -67,14 +67,16 @@ let g:tagbar_phpctags_bin='~/git/phpctags/bin/phpctags'
let g:tagbar_phpctags_memory_limit = '512M'
" }}}
+
filetype off
set runtimepath+=/usr/share/vim
set runtimepath+=~/.vim/bundle/vundle
call vundle#begin()
-Plugin 'scrooloose/syntastic'
Plugin 'Valloric/YouCompleteMe'
Plugin 'SirVer/ultisnips'
+"Plugin 'scrooloose/syntastic'
+Plugin 'neomake/neomake'
Plugin 'honza/vim-snippets'
Plugin 'Shougo/unite.vim'
Plugin 'Shougo/vimproc.vim'
@@ -172,6 +174,16 @@ nnoremap <silent> <C-W><C-Down> <c-w>J
nnoremap <silent> <C-W> <c-w>K
nnoremap <silent> <C-W> <c-w>J
+nnoremap <silent> <C-W> <c-w>L
+nnoremap <silent> <C-W> <c-w>H
+nnoremap <silent> <C-W> <c-w>K
+nnoremap <silent> <C-W> <c-w>J
+
+nnoremap <silent>  <c-w>l
+nnoremap <silent>  <c-w>h
+nnoremap <silent>  <c-w>k
+nnoremap <silent>  <c-w>j
+
nnoremap <Up> gk
nnoremap <Down> gj
nnoremap j gj
@@ -187,6 +199,9 @@ inoremap <F2> <ESC>:NERDTreeToggle<CR>
let python_highlight_all = 1
+" Neomake
+autocmd! BufRead,BufNewFile,BufWritePost * Neomake
+
" Syntastic
let g:syntastic_enable_perl_checker = 1