9 lines
227 B
Lua
9 lines
227 B
Lua
-- Guard against loading twice
|
|
if vim.g.loaded_jasper then
|
|
return
|
|
end
|
|
vim.g.loaded_jasper = true
|
|
|
|
-- The plugin is activated by calling require("jasper").setup(opts) in the user config.
|
|
-- This file is intentionally minimal.
|