From 30fe1a2c826fd7a0da6e971b0e1e2581f7e2c4fc Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 14 Nov 2019 18:08:34 -0500 Subject: [PATCH] Messing around with coc.nvim --- playbooks/roles/anyenv/tasks/main.yml | 7 ++- playbooks/roles/macos/tasks/main.yml | 13 +----- tmux/tmux.conf | 1 + vim/vimrc | 67 +++++++++++++++++++++------ zsh/zsh_plugins.txt | 1 + 5 files changed, 62 insertions(+), 27 deletions(-) diff --git a/playbooks/roles/anyenv/tasks/main.yml b/playbooks/roles/anyenv/tasks/main.yml index 80b24b7..cc85b55 100644 --- a/playbooks/roles/anyenv/tasks/main.yml +++ b/playbooks/roles/anyenv/tasks/main.yml @@ -49,7 +49,12 @@ args: creates: ~/.anyenv/plugins -- name: anyenv plugin +- name: anyenv update plugin shell: git clone https://github.com/znz/anyenv-update.git ~/.anyenv/plugins/anyenv-update args: creates: ~/.anyenv/plugins/anyenv-update + +- name: pyenv virtualenv plugin + shell: git clone https://github.com/pyenv/pyenv-virtualenv.git ~/.anyenv/envs/pyenv/plugins/pyenv-virtualenv + args: + creates: ~/.anyenv/envs/pyenv/plugins/pyenv-virtualenv diff --git a/playbooks/roles/macos/tasks/main.yml b/playbooks/roles/macos/tasks/main.yml index cb5db4f..0a52018 100644 --- a/playbooks/roles/macos/tasks/main.yml +++ b/playbooks/roles/macos/tasks/main.yml @@ -4,15 +4,10 @@ update_homebrew: yes upgrade_all: yes -- name: Homebrew - install neovim +- name: Homebrew - install most packages homebrew: update_homebrew: yes - name: neovim - -- name: Homebrew - Install git - homebrew: - update_homebrew: yes - name: git + name: neovim,git,gnu-tar,zstd - name: Homebrew - Install zsh homebrew: @@ -20,7 +15,3 @@ name: zsh install_options: with-gdbm with-pcre with-unicode9 -- name: Homebrew - Install gnu-tar and zstd - homebrew: - update_homebrew: yes - name: gnu-tar,zstd diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 8b19d7d..fcea491 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -1,6 +1,7 @@ # set default terminal #set -ga terminal-overrides ",xterm-kitty:Tc,alacritty:Tc,xterm-termite:Tc" set-option -g default-terminal "tmux-256color" +set-option -sa terminal-overrides ',xterm-256color:RGB' # set mouse/history stuff set -g mouse on set -g history-limit 20000 diff --git a/vim/vimrc b/vim/vimrc index 6557898..c05acac 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -33,17 +33,10 @@ if has("persistent_undo") set undofile endif -let g:ale_set_baloons = 1 -let g:ale_completion_enabled = 1 - call plug#begin('~/.config/nvim/plugged') "LSP Stuff -Plug 'w0rp/ale' -Plug 'ryanolsonx/vim-lsp-python' -Plug 'ryanolsonx/vim-lsp-typescript' -Plug 'prabirshrestha/asyncomplete.vim' -Plug 'prabirshrestha/asyncomplete-lsp.vim' +Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'junegunn/rainbow_parentheses.vim' @@ -59,12 +52,60 @@ Plug 'mbbill/undotree' Plug 'elmcast/elm-vim' Plug 'liuchengxu/vim-which-key' +"async.vim +Plug 'prabirshrestha/async.vim' + "https://github.com/baverman/vial-http/blob/master/doc/tutorial.rst "Plug 'baverman/vial' "Plug 'baverman/vial-http' call plug#end() +"Setting up coc-tools + +function! s:handlestdout(job_id, data, event_type) +endfunction + +function! s:handlestderr(job_id, data, event_type) +endfunction + +function! s:handleexitpyls(job_id, data, event_type) + echo 'pyls installed' +endfunction + +function! s:handleexitsolargraph(job_id, data, event_type) + echo 'solargraph installed' +endfunction + +function! s:cmdexitcode(cmd) + let output = system(a:cmd) + return v:shell_error +endfunction + +function! s:ensurePython() + if (s:cmdexitcode('pyls -h')) + let jobid = async#job#start(['pip', 'install', 'python-language-server'], { + \ 'on_stdout': function('s:handlestdout'), + \ 'on_stderr': function('s:handlestderr'), + \ 'on_exit': function('s:handleexitpyls') + \ }) + endif + execute 'CocInstall coc-python' +endfunction + +function! s:ensureRuby() + if (s:cmdexitcode('solargraph -v')) + let jobid = async#job#start(['gem', 'install', 'solargraph'], { + \ 'on_stdout': function('s:handlestdout'), + \ 'on_stderr': function('s:handlestderr'), + \ 'on_exit': function('s:handleexitsolargraph') + \ }) + endif +endfunction + +call s:ensurePython() +call s:ensureRuby() + "Gruvbox config " colorscheme gruvbox set background=dark @@ -86,13 +127,9 @@ nnoremap nnoremap "ALE Keymaps and options -nnoremap a a -nnoremap g :ALEGoToDefinition -nnoremap f :ALEFix - -let g:ale_fixers = { - \ 'python': ['add_blank_lines_for_python_control_statements', 'yapf'] - \ } +"nnoremap a a +"nnoremap g :ALEGoToDefinition +"nnoremap f :ALEFix "which-key let g:which_key_map = {} diff --git a/zsh/zsh_plugins.txt b/zsh/zsh_plugins.txt index c0a2350..eb154f9 100644 --- a/zsh/zsh_plugins.txt +++ b/zsh/zsh_plugins.txt @@ -11,4 +11,5 @@ zsh-users/zsh-syntax-highlighting zsh-users/zsh-completions ress997/zsh-completions-anyenv Tarrasch/zsh-bd +agkozak/zsh-z