Merge branch 'main' of https://git.snaile.de/luca/dotfiles
This commit is contained in:
commit
c4471d9035
|
@ -17,7 +17,6 @@ require("lazy").setup({
|
|||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||
{ import = "lazyvim.plugins.extras.ai.copilot" },
|
||||
{ import = "lazyvim.plugins.extras.ai.copilot-chat" },
|
||||
{ import = "lazyvim.plugins.extras.coding.blink" },
|
||||
{ import = "lazyvim.plugins.extras.coding.mini-surround" },
|
||||
{ import = "lazyvim.plugins.extras.coding.mini-comment" },
|
||||
-- { import = "lazyvim.plugins.extras.coding.neogen" },
|
||||
|
@ -49,6 +48,7 @@ require("lazy").setup({
|
|||
{ import = "lazyvim.plugins.extras.lsp.neoconf" },
|
||||
{ import = "lazyvim.plugins.extras.test.core" },
|
||||
{ import = "lazyvim.plugins.extras.ui.mini-indentscope" },
|
||||
{ import = "lazyvim.plugins.extras.ui.dashboard-nvim" },
|
||||
{ import = "lazyvim.plugins.extras.ui.treesitter-context" },
|
||||
{ import = "lazyvim.plugins.extras.util.dot" },
|
||||
{ import = "plugins" },
|
||||
|
|
|
@ -12,3 +12,4 @@ o.conceallevel = 0
|
|||
|
||||
g.lazyvim_php_lsp = "intelephense"
|
||||
g.lazyvim_python_lsp = "basedpyright"
|
||||
g.ai_cm = true
|
||||
|
|
|
@ -147,6 +147,8 @@ do
|
|||
esac
|
||||
done
|
||||
|
||||
gpg-connect-agent /bye
|
||||
|
||||
unset SSH_AGENT_PID
|
||||
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
|
||||
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
|
||||
|
|
|
@ -34,25 +34,26 @@ zsnippet https://raw.githubusercontent.com/python-virtualenvwrapper/virtualenvwr
|
|||
turbo
|
||||
zload MichaelAquilina/zsh-auto-notify
|
||||
AUTO_NOTIFY_IGNORE+=(
|
||||
vim
|
||||
nvim
|
||||
less
|
||||
more
|
||||
man
|
||||
tig
|
||||
watch
|
||||
git
|
||||
commit
|
||||
top
|
||||
htop
|
||||
ssh
|
||||
nano
|
||||
tail
|
||||
lf
|
||||
lazygit
|
||||
elia
|
||||
git
|
||||
gunicorn
|
||||
htop
|
||||
kube
|
||||
lazygit
|
||||
less
|
||||
lf
|
||||
man
|
||||
more
|
||||
nano
|
||||
nvim
|
||||
ssh
|
||||
tail
|
||||
tig
|
||||
top
|
||||
vim
|
||||
watch
|
||||
xchroot
|
||||
)
|
||||
|
||||
# NOTE: colorize help output
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
backup_key="${HOME}/.ssh/backup"
|
||||
prune_key="${HOME}/.ssh/prune"
|
||||
backup_key="${HOME}/.ssh/borg/backup"
|
||||
prune_key="${HOME}/.ssh/borg/prune"
|
||||
backup_host="luca@server155.tralios.de"
|
||||
# shellcheck disable=SC2088
|
||||
repo="~/backup/dijkstra"
|
||||
|
|
Loading…
Reference in New Issue