Merge branch 'main' of git.snaile.de:luca/dotfiles
This commit is contained in:
commit
f5cbd74ec4
|
@ -1,6 +1,6 @@
|
||||||
services:
|
services:
|
||||||
gitlab.tralios.de: 'gitlab:gitlab.tralios.de'
|
gitlab.tralios.de: "gitlab:gitlab.tralios.de"
|
||||||
git.snaile.de: 'gitea:git.snaile.de'
|
git.snaile.de: "gitea:git.snaile.de"
|
||||||
gui:
|
gui:
|
||||||
nerdFontsVersion: "3"
|
nerdFontsVersion: "3"
|
||||||
showRandomTip: false
|
showRandomTip: false
|
||||||
|
|
|
@ -16,7 +16,7 @@ require("lazy").setup({
|
||||||
spec = {
|
spec = {
|
||||||
{
|
{
|
||||||
"LazyVim/LazyVim",
|
"LazyVim/LazyVim",
|
||||||
import = "lazyvim.plugins"
|
import = "lazyvim.plugins",
|
||||||
},
|
},
|
||||||
{ import = "lazyvim.plugins.extras.coding.yanky" },
|
{ import = "lazyvim.plugins.extras.coding.yanky" },
|
||||||
{ import = "lazyvim.plugins.extras.coding.copilot" },
|
{ import = "lazyvim.plugins.extras.coding.copilot" },
|
||||||
|
|
|
@ -80,30 +80,30 @@ M.banners = {
|
||||||
|
|
||||||
---@type Array<table>
|
---@type Array<table>
|
||||||
M.buttons = {
|
M.buttons = {
|
||||||
|
-- {
|
||||||
|
-- action = LazyVim.telescope("files"),
|
||||||
|
-- desc = " Find File" .. string.rep(" ", 33),
|
||||||
|
-- icon = " ",
|
||||||
|
-- key = "f",
|
||||||
|
-- },
|
||||||
{
|
{
|
||||||
action = LazyVim.telescope("files"),
|
action = "enew",
|
||||||
desc = " Find File" .. string.rep(" ", 33),
|
|
||||||
icon = " ",
|
|
||||||
key = "f",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
action = "ene | startinsert",
|
|
||||||
desc = " New File" .. string.rep(" ", 34),
|
desc = " New File" .. string.rep(" ", 34),
|
||||||
icon = " ",
|
icon = " ",
|
||||||
key = "n",
|
key = "n",
|
||||||
},
|
},
|
||||||
{
|
-- {
|
||||||
action = "Telescope live_grep",
|
-- action = "Telescope live_grep",
|
||||||
desc = " Find Text" .. string.rep(" ", 33),
|
-- desc = " Find Text" .. string.rep(" ", 33),
|
||||||
icon = " ",
|
-- icon = " ",
|
||||||
key = "g",
|
-- key = "g",
|
||||||
},
|
-- },
|
||||||
{
|
-- {
|
||||||
action = "TodoTelescope",
|
-- action = "TodoTelescope",
|
||||||
desc = " Find Todo" .. string.rep(" ", 33),
|
-- desc = " Find Todo" .. string.rep(" ", 33),
|
||||||
icon = " ",
|
-- icon = " ",
|
||||||
key = "t",
|
-- key = "t",
|
||||||
},
|
-- },
|
||||||
{
|
{
|
||||||
action = 'lua require("persistence").load()',
|
action = 'lua require("persistence").load()',
|
||||||
desc = " Restore Session" .. string.rep(" ", 27),
|
desc = " Restore Session" .. string.rep(" ", 27),
|
||||||
|
|
|
@ -35,7 +35,7 @@ return {
|
||||||
button.key_format = " %s"
|
button.key_format = " %s"
|
||||||
end
|
end
|
||||||
math.randomseed(os.time())
|
math.randomseed(os.time())
|
||||||
local banner = "\n\n" .. banners[math.random(#banners)] .. "\n\n"
|
local banner = "\n" .. banners[math.random(#banners)] .. "\n"
|
||||||
opts.config.header = vim.split(banner, "\n")
|
opts.config.header = vim.split(banner, "\n")
|
||||||
opts.config.center = center
|
opts.config.center = center
|
||||||
opts.config.footer = function()
|
opts.config.footer = function()
|
||||||
|
|
|
@ -1,16 +1,19 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
script="sudo xbps-install -Su; pkill -RTMIN+8 dwmblocks"
|
# script="sudo xbps-install -Su; pkill -RTMIN+8 dwmblocks"
|
||||||
|
#
|
||||||
|
# if [ -n "$TERM_PROGRAM" ]; then
|
||||||
|
# sh -c "$script"
|
||||||
|
# else
|
||||||
|
# st -e sh -c "
|
||||||
|
# $script
|
||||||
|
# tput bold
|
||||||
|
# tput setaf 4
|
||||||
|
# echo 'All done!'
|
||||||
|
# tput sgr 0
|
||||||
|
# read -r _
|
||||||
|
# "
|
||||||
|
# fi
|
||||||
|
|
||||||
if [ -n "$TERM" ]; then
|
sudo xbps-install -Su
|
||||||
sh -c "$script"
|
pkill -RTMIN+8 dwmblocks
|
||||||
else
|
|
||||||
st -e sh -c "
|
|
||||||
$script
|
|
||||||
tput bold
|
|
||||||
tput setaf 4
|
|
||||||
echo 'All done!'
|
|
||||||
tput sgr 0
|
|
||||||
read -r _
|
|
||||||
"
|
|
||||||
fi
|
|
||||||
|
|
Loading…
Reference in New Issue