Messing around with coc.nvim
This commit is contained in:
parent
a9f1bab483
commit
30fe1a2c82
5 changed files with 62 additions and 27 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
67
vim/vimrc
67
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 <C-k> <C-u>
|
|||
nnoremap <C-j> <C-d>
|
||||
|
||||
"ALE Keymaps and options
|
||||
nnoremap <silent> <leader><Space>a a<C-X><C-O>
|
||||
nnoremap <silent> <leader><Space>g :ALEGoToDefinition<CR>
|
||||
nnoremap <silent> <leader><Space>f :ALEFix<CR>
|
||||
|
||||
let g:ale_fixers = {
|
||||
\ 'python': ['add_blank_lines_for_python_control_statements', 'yapf']
|
||||
\ }
|
||||
"nnoremap <silent> <leader><Space>a a<C-X><C-O>
|
||||
"nnoremap <silent> <leader><Space>g :ALEGoToDefinition<CR>
|
||||
"nnoremap <silent> <leader><Space>f :ALEFix<CR>
|
||||
|
||||
"which-key
|
||||
let g:which_key_map = {}
|
||||
|
|
|
@ -11,4 +11,5 @@ zsh-users/zsh-syntax-highlighting
|
|||
zsh-users/zsh-completions
|
||||
ress997/zsh-completions-anyenv
|
||||
Tarrasch/zsh-bd
|
||||
agkozak/zsh-z
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue