Compare commits

...

5 commits

Author SHA1 Message Date
5306f87db9 updates 2022-10-26 13:45:11 -05:00
91ad055fc1 update sheldon syntax 2022-10-26 13:41:41 -05:00
6e9b4b2ace add plz alias 2022-10-18 14:53:33 -05:00
fed35b0af3 add xplr configs 2022-10-18 14:19:41 -05:00
ff2b30079e make eget only upgrade 2022-10-18 14:13:28 -05:00
8 changed files with 53 additions and 8 deletions

View file

@ -73,7 +73,7 @@ deps_check() {
exit 1
else
curl https://zyedidia.github.io/eget.sh | sh
mv eget $BIN_DIR/eget
mv eget --upgrade-only $BIN_DIR/eget
fi
fi

View file

@ -7,11 +7,11 @@ lvim.plugins = {
'catppuccin/nvim',
as = 'catppuccin'
},
{ 'Djancyp/better-comments.nvim',
config = function()
require('better-comment').Setup()
end
},
-- { 'Djancyp/better-comments.nvim',
-- config = function()
-- require('better-comment').Setup()
-- end
-- },
{ 'NoahTheDuke/vim-just' },
{ 'ggandor/lightspeed.nvim' },
{ 'elkowar/yuck.vim' },

View file

@ -1,7 +1,7 @@
-- settings
local opt = vim.opt
opt.timeoutlen = 200
-- opt.cmdheight = 0 -- broken??
opt.cmdheight = 0 -- broken??
opt.listchars:append({ tab = "⍿·", trail = "×" })
opt.list = true
opt.number = true

View file

@ -12,6 +12,7 @@ keepbuilddeps = no
skipfailedbuild = no
alwaysusedynamicusers = no
ignorearch = no
gpgdir =
[review]
noedit = no
@ -33,6 +34,7 @@ aursearchsorting = hottest
displaylastupdated = no
groupbyrepository = yes
reversesearchsorting = no
warnaboutpackageupdates =
[misc]
sudoloopinterval = 59

View file

@ -47,4 +47,4 @@ github = "Aloxaf/fzf-tab"
apply = ["defer"]
[templates]
defer = { value = 'zsh-defer source "{{ file }}"', each = true }
defer = "{% for file in files %}zsh-defer source \"{{ file }}\"\n{% endfor %}"

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,
})

View file

@ -62,3 +62,6 @@ alias mkc="make -C"
alias umamba="micromamba"
alias g="git"
## TODO: make lock state aware function
is-executable gum && alias plz="gum input --prompt='🔒' --password | sudo -nS"