You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 days ago | |
---|---|---|
LICENSE | 2 weeks ago | |
README.md | 3 days ago | |
bulb.toml | 1 week ago | |
init.lua | 3 days ago |
README.md
💡 lite-bulb
minimalist, vim-plug inspired plugin manager for lite-xl
DISCLAIMER: This plugin doesn't support windows yet and i'm not planning on implementing windows support myself. If you want Windows support make a PR.
Example usage:
config.plugins.bulb.plugins = {
"torchedsammy/evergreen.lxl", -- Supports shorthand format for plugin URLs (defaults to https://github.com/<shorthand>)
"https://git.karx.xyz/delta/lite-bulb", -- Bulb can self-manage itself
{ "lite-xl/lite-xl-lsp",
requires = { "lite-xl/widgets", -- Specify dependencies
{ "liquidev/lintplus", opt = true } }
},
{ "lite-xl/console", commit = "102129c" }, -- Specify plugin version via commit hashes or git tags
{ "torchedsammy/litepresence", run = "cd litepresence && go get && go build" } -- run shell commands post-installation/update
{ "lite-xl/lite-xl-plugins", branch = "2.1", files = { "plugins/minimap.lua", "plugins/bracketmatch.lua" } } -- Get individual files from a repo
}