1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-19 08:43:44 +08:00
SpaceVim/autoload/SpaceVim/layers/org.vim

25 lines
697 B
VimL
Raw Normal View History

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