mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:20:05 +08:00
12 lines
105 B
Lua
12 lines
105 B
Lua
--!/usr/bin/lua
|
|
local M = {}
|
|
|
|
|
|
function M.exists() -- {{{
|
|
return true
|
|
end
|
|
|
|
|
|
return M
|
|
-- }}}
|