mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12: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
|
||
|
-- }}}
|