2018-05-12 20:53:25 +08:00
|
|
|
"=============================================================================
|
|
|
|
" org.vim --- org layer for SpaceVim
|
2021-09-19 22:23:23 +08:00
|
|
|
" Copyright (c) 2016-2021 Wang Shidong & Contributors
|
2018-05-12 20:53:25 +08:00
|
|
|
" Author: Wang Shidong < wsdjeg at 163.com >
|
|
|
|
" URL: https://spacevim.org
|
|
|
|
" License: GPLv3
|
|
|
|
"=============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
function! SpaceVim#layers#org#plugins() abort
|
|
|
|
let plugins = []
|
|
|
|
call add(plugins, ['SpaceVim/org-mode', {'merged' : 0}])
|
|
|
|
return plugins
|
|
|
|
endfunction
|
2021-08-10 19:59:42 +08:00
|
|
|
|
|
|
|
function! SpaceVim#layers#org#config() abort
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! SpaceVim#layers#org#health() abort
|
|
|
|
call SpaceVim#layers#org#plugins()
|
|
|
|
call SpaceVim#layers#org#config()
|
|
|
|
return 1
|
|
|
|
endfunction
|