Fixed up some stuff

This commit is contained in:
Anthony Cicchetti 2019-11-14 20:47:26 -05:00
parent 4a31e90830
commit 173259f967
3 changed files with 19 additions and 4 deletions

View file

@ -11,3 +11,10 @@
state: link
force: yes
- name: Symlink coc-settings.json
file:
src: ~/.dotfiles/vim/coc-settings.json
dest: ~/.config/nvim/coc-settings.json
state: link
force: yes

8
vim/coc-settings.json Normal file
View file

@ -0,0 +1,8 @@
{
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"suggest.triggerAfterInsertEnter": true,
"suggest.acceptSuggestionOnCommitCharacter": false
}

View file

@ -174,16 +174,16 @@ nnoremap <C-k> <C-u>
nnoremap <C-j> <C-d>
"Coc Keymaps and options
nnoremap <silent> <leader><Space>d <Plug>(coc-definition)
nnoremap <silent> <leader><Space>g <Plug>(coc-type-definition)
nnoremap <silent> <leader><Space>d :call CocAction('jumpDefinition')<cr>
nnoremap <silent> <leader><Space>g :call CocAtion('jumpTypeDefinition')<cr>
"which-key
let g:which_key_map = {}
autocmd! User vim-which-key call which_key#register('<Space>', 'g:which_key_map')
let g:which_key_map[' '] = {
\ 'name' : '+CoC' ,
\ 'd' : 'definition' ,
\ 'g' : 'go-to-definition' ,
\ 'd' : 'go-to-definition' ,
\ 'g' : 'go-to-type-definition' ,
\ }
call which_key#register('<Space>', "g:which_key_map")
nnoremap <silent> <leader> :<c-u>WhichKey '<Space>'<CR>