This commit is contained in:
Vasili Svirydau
2014-02-26 15:12:03 -08:00
4 changed files with 12 additions and 5 deletions

3
.gitmodules vendored
View File

@@ -49,3 +49,6 @@
[submodule "bundle/golang.vim"]
path = bundle/golang.vim
url = https://github.com/jnwhiteh/vim-golang.git
[submodule "bundle/gitv.vim"]
path = bundle/gitv.vim
url = https://github.com/gregsexton/gitv.git

View File

@@ -3,5 +3,10 @@ setlocal errorformat=\ %#[%.%#]\ %#%f:%l:%v:%*\\d:%*\\d:\ %t%[%^:]%#:%m,
\%A\ %#[%.%#]\ %f:%l:\ %m,%-Z\ %#[%.%#]\ %p^,%C\ %#[%.%#]\ %#%m
", %-C%.%#
nmap <leader>m :make<cr><cr>
nmap <leader>m :make<cr><cr><cr>
setlocal colorcolumn=80
let g:syntastic_java_checkers=['checkstyle']
let g:syntastic_java_checkstyle_classpath='/usr/share/java/checkstyle.jar:/usr/share/java/commons-logging-1.1.1.jar'
let g:syntastic_java_checkstyle_conf_file='/usr/share/checkstyle/sun_checks.xml'

1
bundle/gitv.vim Submodule

Submodule bundle/gitv.vim added at 05792bd103

6
vimrc
View File

@@ -53,6 +53,8 @@ endif
"open config with \r
nmap <leader>r :e $MYVIMRC<cr>
nmap <leader>T :TagbarToggle<cr>
nmap <leader>qt :QuickfixsignsToggle<cr>
nmap <leader>qq :QuickfixsignsSet<cr>
nmap <silent><leader>w :up<cr>
imap <silent><leader>w <Esc>:up<cr>a
@@ -121,10 +123,6 @@ if exists("g:loaded_syntastic_c_autoload")
nmap <leader>e :Errors<cr>
endif
let g:syntastic_java_checkers=['checkstyle']
let g:syntastic_java_checkstyle_classpath='/usr/share/java/checkstyle.jar:/usr/share/java/commons-logging-1.1.1.jar'
let g:syntastic_java_checkstyle_conf_file='/usr/share/checkstyle/sun_checks.xml'
nmap <leader>] :bn<cr>
nmap <leader>[ :bp<cr>
nmap <leader>d :bd<cr>