mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 04:51:33 +08:00
11 lines
322 B
VimL
11 lines
322 B
VimL
function! SpaceVim#layers#mail#plugins() abort
|
|
return [
|
|
\ ['vim-mail/vim-mail',{ 'merged' : 0, 'loadconf' : 1}],
|
|
\ ]
|
|
endfunction
|
|
|
|
|
|
function! SpaceVim#layers#mail#config()
|
|
call SpaceVim#mapping#space#def('nnoremap', ['a', 'm'], 'call mail#client#open()', 'Start mail client', 1)
|
|
endfunction
|