mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-12 02:23:39 +08:00
11 lines
315 B
VimL
11 lines
315 B
VimL
function! SpaceVim#layers#chat#plugins() abort
|
|
return [
|
|
\ ['vim-chat/vim-chat',{ 'merged' : 0, 'loadconf' : 1}],
|
|
\ ]
|
|
endfunction
|
|
|
|
|
|
function! SpaceVim#layers#chat#config()
|
|
call SpaceVim#mapping#space#def('nnoremap', ['a', 'q'], 'call chat#qq#start()', 'Start QQ server', 1)
|
|
endfunction
|