First commit

This commit is contained in:
James Dugan 2025-02-04 21:06:01 -07:00
commit 847c9e64c0
51 changed files with 4058 additions and 0 deletions

34
.config/xplr/plugins.lua Normal file
View file

@ -0,0 +1,34 @@
-- Plugins handled via xpm.xplr (https://github.com/dtomvan/xpm.xplr)
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',
-- Other plugins
'gitlab:hartan/web-devicons.xplr',
'sayanarijit/offline-docs.xplr',
'duganchen/one-table-column.xplr',
},
auto_install = true,
auto_cleanup = true
})