Fixed up some stuff
This commit is contained in:
parent
4a31e90830
commit
173259f967
3 changed files with 19 additions and 4 deletions
|
@ -11,3 +11,10 @@
|
||||||
state: link
|
state: link
|
||||||
force: yes
|
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
8
vim/coc-settings.json
Normal 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
|
||||||
|
}
|
|
@ -174,16 +174,16 @@ nnoremap <C-k> <C-u>
|
||||||
nnoremap <C-j> <C-d>
|
nnoremap <C-j> <C-d>
|
||||||
|
|
||||||
"Coc Keymaps and options
|
"Coc Keymaps and options
|
||||||
nnoremap <silent> <leader><Space>d <Plug>(coc-definition)
|
nnoremap <silent> <leader><Space>d :call CocAction('jumpDefinition')<cr>
|
||||||
nnoremap <silent> <leader><Space>g <Plug>(coc-type-definition)
|
nnoremap <silent> <leader><Space>g :call CocAtion('jumpTypeDefinition')<cr>
|
||||||
|
|
||||||
"which-key
|
"which-key
|
||||||
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' : '+CoC' ,
|
\ 'name' : '+CoC' ,
|
||||||
\ 'd' : 'definition' ,
|
\ 'd' : 'go-to-definition' ,
|
||||||
\ 'g' : 'go-to-definition' ,
|
\ 'g' : 'go-to-type-definition' ,
|
||||||
\ }
|
\ }
|
||||||
call which_key#register('<Space>', "g:which_key_map")
|
call which_key#register('<Space>', "g:which_key_map")
|
||||||
nnoremap <silent> <leader> :<c-u>WhichKey '<Space>'<CR>
|
nnoremap <silent> <leader> :<c-u>WhichKey '<Space>'<CR>
|
||||||
|
|
Loading…
Add table
Reference in a new issue