My slow descent into madness

This commit is contained in:
Anthony Cicchetti 2019-11-14 20:26:37 -05:00
parent 5fd8defa85
commit d42fd90215

View file

@ -75,63 +75,60 @@ function! s:writebuffer(bufname, text)
call append(0, a:text) call append(0, a:text)
endfunction endfunction
function! s:handlegeneric(cmd, job_id, data, event_type) function! s:handlegeneric(cmd, tech, job_id, data, event_type)
if a:event_type == 'exit' if a:event_type == 'exit'
echo a:cmd . ' completed successfully' echo a:cmd . ' completed successfully'
elseif a:event_type == 'stdout' && len(a:data) > 1 elseif a:event_type == 'stdout' && len(a:data) > 1
call s:writebuffer('__STDOUT__', a:data) call s:writebuffer('__STDOUT_' . a:tech . '__', a:data)
elseif a:event_type == 'stderr' && len(a:data) > 1 elseif a:event_type == 'stderr' && len(a:data) > 1
call s:writebuffer('__STDERR__', a:data) call s:writebuffer('__STDERR_' . a:tech . '__', a:data)
endif endif
endfunction endfunction
"Setting up coc-tools "Setting up coc-tools
function! s:handlepython(job_id, data, event_type) function! s:handlepython(job_id, data, event_type)
call s:handlegeneric('pip install python-language-server pynvim', a:job_id, a:data, a:event_type) call s:handlegeneric('pip install python-language-server pynvim', 'PYTHON', a:job_id, a:data, a:event_type)
endfunction endfunction
function! s:handleexitsolargraph(job_id, data, event_type) function! s:handleruby(job_id, data, event_type)
echo 'solargraph & neovim installed' call s:handlegeneric('gem install solargraph neovim', 'RUBY', a:job_id, a:data, a:event_type)
endfunction endfunction
function! s:handleexitnode(job_id, data, event_type) function! s:handlenode(job_id, data, event_type)
echo 'node-host installed' call s:handlegeneric('yarn global add neovim', 'NODE', a:job_id, a:data, a:event_type)
endfunction endfunction
function! s:cmdexitcode(cmd) function! s:cmdexitcode(cmd)
let output = system(a:cmd) let l:output = system(a:cmd)
return v:shell_error return v:shell_error
endfunction endfunction
function! s:asyncFunc(cmd, callbackfunc)
return async#job#start(a:cmd, {
\ 'on_stdout': function(a:callbackfunc),
\ 'on_stderr': function(a:callbackfunc),
\ 'on_exit': function(a:callbackfunc)
\ })
endfunction
function! s:ensurePython() function! s:ensurePython()
if (s:cmdexitcode('pyls -h') || s:cmdexitcode('python -c "import neovim"')) if (s:cmdexitcode('pyls -h') || s:cmdexitcode('python -c "import neovim"'))
let l:jobid = async#job#start(['pip', 'install', 'python-language-server', 'pynvim'], { let l:jobid = s:asyncFunc('pip install python-language-server pynvim', 's:handlepython')
\ 'on_stdout': function('s:handlepython'), au VimEnter * CocInstall coc-python
\ 'on_stderr': function('s:handlepython'),
\ 'on_exit': function('s:handlepython')
\ })
au VimEnter * CocInstall coc-python
endif endif
endfunction endfunction
function! s:ensureRuby() function! s:ensureRuby()
if (s:cmdexitcode('solargraph -v && ruby -e "require \"neovim\""')) if (s:cmdexitcode('solargraph -v') || s:cmdexitcode('ruby -e "require \"neovim\""'))
let l:jobid = async#job#start(['gem', 'install', 'solargraph', 'neovim'], { let l:jobid = s:asyncFunc('gem install solargraph neovim', 's:handleruby')
\ 'on_stdout': function('s:handlestdout'), au VimEnter * CocInstall coc-solargraph
\ 'on_stderr': function('s:handlestderr'),
\ 'on_exit': function('s:handleexitsolargraph')
\ })
au VimEnter * CocInstall coc-solargraph
endif endif
endfunction endfunction
function! s:ensureNode() function! s:ensureNode()
if (s:cmdexitcode('neovim-node-host --version')) if (s:cmdexitcode('neovim-node-host --version'))
let l:jobid = async#job#start(['yarn', 'global', 'add', 'neovim'], { let l:jobid = s:asyncFunc('yarn global add neovim', 's:ensureNode')
\ 'on_stdout': function('s:handlestdout'),
\ 'on_stderr': function('s:handlestderr'),
\ 'on_exit': function('s:handleexitnode')
\})
au VimEnter * CocInstall coc-tsserver au VimEnter * CocInstall coc-tsserver
endif endif
endfunction endfunction
@ -157,12 +154,8 @@ inoremap <silent><expr> <c-space> coc#refresh()
autocmd CursorHold * silent call CocActionAsync('highlight') autocmd CursorHold * silent call CocActionAsync('highlight')
command! -nargs=0 Format :call CocAction('format') command! -nargs=0 Format :call CocAction('format')
command! -nargs=1 WriteBuffer :call Writebuffer(<args>)
"Gruvbox config
" colorscheme gruvbox
set background=dark set background=dark
let g:gruvbox_contrast_dark = 'soft'
colorscheme corvine colorscheme corvine
"Airline settings "Airline settings
@ -176,7 +169,7 @@ nnoremap <leader>h <C-W><C-H>
nnoremap <leader>j <C-W><C-J> nnoremap <leader>j <C-W><C-J>
nnoremap <leader>k <C-W><C-K> nnoremap <leader>k <C-W><C-K>
nnoremap <leader>l <C-W><C-L> nnoremap <leader>l <C-W><C-L>
nnoremap <leader>n :nohl nnoremap <leader>n :nohl<cr>
nnoremap <C-k> <C-u> nnoremap <C-k> <C-u>
nnoremap <C-j> <C-d> nnoremap <C-j> <C-d>
@ -188,7 +181,7 @@ nnoremap <silent> <leader><Space>g <Plug>(coc-type-definition)
let g:which_key_map = {} let g:which_key_map = {}
autocmd! User vim-which-key call which_key#register('<Space>', 'g:which_key_map') autocmd! User vim-which-key call which_key#register('<Space>', 'g:which_key_map')
let g:which_key_map[' '] = { let g:which_key_map[' '] = {
\ 'name' : '+ale' , \ 'name' : '+CoC' ,
\ 'd' : 'definition' , \ 'd' : 'definition' ,
\ 'g' : 'go-to-definition' , \ 'g' : 'go-to-definition' ,
\ } \ }