Compare commits
5 commits
50d64368f9
...
5306f87db9
Author | SHA1 | Date | |
---|---|---|---|
5306f87db9 | |||
91ad055fc1 | |||
6e9b4b2ace | |||
fed35b0af3 | |||
ff2b30079e |
8 changed files with 53 additions and 8 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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' },
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 %}"
|
||||
|
|
5
home/private_dot_config/xplr/init.lua
Normal file
5
home/private_dot_config/xplr/init.lua
Normal file
|
@ -0,0 +1,5 @@
|
|||
package.path = os.getenv("HOME") .. '/.config/xplr/lua/?.lua'
|
||||
require("plugins")
|
||||
|
||||
version = "0.19.4"
|
||||
|
35
home/private_dot_config/xplr/lua/plugins.lua
Normal file
35
home/private_dot_config/xplr/lua/plugins.lua
Normal 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,
|
||||
})
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue