Compare commits

..

No commits in common. "5306f87db915005b05beb2ecc47e8e3c5c249ebe" and "50d64368f9ccd3009454d471e1954508d20822bc" have entirely different histories.

8 changed files with 8 additions and 53 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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