add xplr configs

This commit is contained in:
Daylin Morgan 2022-10-18 14:19:41 -05:00
parent ff2b30079e
commit fed35b0af3
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package.path = os.getenv("HOME") .. '/.config/xplr/lua/?.lua'
require("plugins")
version = "0.19.4"

View File

@ -0,0 +1,35 @@
local home = os.getenv("HOME")
local xpm_path = home .. "/.local/share/xplr/dtomvan/xpm.xplr"
local xpm_url = "https://github.com/dtomvan/xpm.xplr"
package.path = package.path
.. ";"
.. xpm_path
.. "/?.lua;"
.. xpm_path
.. "/?/init.lua"
os.execute(
string.format(
"[ -e '%s' ] || git clone '%s' '%s'",
xpm_path,
xpm_url,
xpm_path
)
)
require("xpm").setup({
plugins = {
-- Let xpm manage itself
'dtomvan/xpm.xplr',
'prncss-xyz/icons.xplr',
{'sayanarijit/zoxide.xplr',
setup = {
mode = "default",
key = "Z",
},
}
},
auto_install = true,
auto_cleanup = true,
})