diff options
author | neodarz <neodarz@neodarz.net> | 2017-12-20 16:32:00 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-12-20 16:32:00 +0100 |
commit | 4a0f5bc8d95af2c62527ed1d17e5411133482921 (patch) | |
tree | d7ec39513cdb421e5af4778e8072e2b52f92353e /nvim/.config | |
parent | aef9c2bd6951f2b997bafe7f3156879d63a9abf5 (diff) | |
download | dotfiles_ascii-4a0f5bc8d95af2c62527ed1d17e5411133482921.tar.xz dotfiles_ascii-4a0f5bc8d95af2c62527ed1d17e5411133482921.zip |
neovim: add somme cool plugin
Diffstat (limited to '')
-rw-r--r-- | nvim/.config/nvim/init.vim | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index e9449e8..6d5b3e4 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -90,6 +90,18 @@ Plugin 'maksimr/vim-jsbeautify' " rst Plugin 'marshallward/vim-restructuredtext' +Plugin 'artur-shaik/vim-javacomplete2' + +Plugin 'leafgarland/typescript-vim' + +Plugin 'Quramy/tsuquyomi' + +Plugin 'palantir/tslint' + +"Plugin 'FredKSchott/CoVim' + +Plugin 'makerforceio/CoVim' + " After all plugins... call vundle#end() filetype plugin indent on @@ -206,3 +218,35 @@ noremap <F3> :Autoformat<CR> let g:autoformat_autoindent = 0 let g:autoformat_retab = 0 let g:autoformat_remove_trailing_spaces = 0 + +autocmd Filetype java set makeprg=javac\ % +set errorformat=%A%f:%l:\ %m,%-Z%p^,%-C%.%# +map <F9> :make<Return>:copen<Return> +map <F10> :cprevious<Return> +map <F11> :cnext<Return> + +map <F5> :call CompileRunGcc()<CR> +func! CompileRunGcc() + exec "w" + if &filetype == 'c' + exec "!gcc % -o %<" + exec "!time ./%<" + elseif &filetype == 'cpp' + exec "!g++ % -o %<" + exec "!time ./%<" + elseif &filetype == 'java' + exec "!time java -cp %:p:h %:t:r" + elseif &filetype == 'sh' + exec "!time bash %" + elseif &filetype == 'python' + exec "!time python2.7 %" + elseif &filetype == 'html' + exec "!firefox % &" + elseif &filetype == 'go' + exec "!go build %<" + exec "!time go run %" + elseif &filetype == 'mkd' + exec "!~/.vim/markdown.pl % > %.html &" + exec "!firefox %.html &" + endif +endfunc |