mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-07-02 12:51:34 +02:00
Compare commits
16 Commits
b2fd0f3b25
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 04f9ac187a | |||
| 803472b1c9 | |||
| 6e00342044 | |||
| d06a7bddf4 | |||
| e32eb6eebd | |||
| 29ac82a412 | |||
| 641a124fe3 | |||
| 71d23fa096 | |||
| 8dde717180 | |||
| a148a5a7a4 | |||
| 3118f9d40f | |||
| f11f68c751 | |||
| ec77543d6b | |||
| b82bfff551 | |||
| d579220afd | |||
| 0aab087f11 |
@@ -74,11 +74,11 @@ alias contacts="khard"
|
|||||||
# kolourpaint
|
# kolourpaint
|
||||||
alias paint="kolourpaint"
|
alias paint="kolourpaint"
|
||||||
|
|
||||||
# ls(d)
|
# ls
|
||||||
alias l="exa --group-directories-first --icons"
|
alias l="eza --group-directories-first --icons"
|
||||||
alias la="exa -la --group-directories-first --icons --git"
|
alias la="eza -la --group-directories-first --icons --git"
|
||||||
alias ll="exa -l --group-directories-first --icons --git"
|
alias ll="eza -l --group-directories-first --icons --git"
|
||||||
alias tree="exa --tree --group-directories-first --icons"
|
alias tree="eza --tree --group-directories-first --icons"
|
||||||
|
|
||||||
# mkdir
|
# mkdir
|
||||||
alias mkdir="mkdir -p"
|
alias mkdir="mkdir -p"
|
||||||
@@ -99,9 +99,6 @@ alias octave="octave --persist"
|
|||||||
# pacman
|
# pacman
|
||||||
alias pac="sudo pacman"
|
alias pac="sudo pacman"
|
||||||
|
|
||||||
# papis
|
|
||||||
alias papis='PYTHONWARNINGS=ignore::DeprecationWarning python -m papis'
|
|
||||||
|
|
||||||
# ping
|
# ping
|
||||||
alias ping="ping -c 5"
|
alias ping="ping -c 5"
|
||||||
|
|
||||||
|
|||||||
161
.config/gitignore/python
Normal file
161
.config/gitignore/python
Normal file
@@ -0,0 +1,161 @@
|
|||||||
|
# Created by https://www.toptal.com/developers/gitignore/api/venv,python
|
||||||
|
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
cover/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
.pybuilder/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
# .python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# poetry
|
||||||
|
#poetry.lock
|
||||||
|
|
||||||
|
# pdm
|
||||||
|
#pdm.lock
|
||||||
|
.pdm.toml
|
||||||
|
|
||||||
|
# PEP 582
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# pytype static type analyzer
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# Cython debug symbols
|
||||||
|
cython_debug/
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
|
#.idea/
|
||||||
|
|
||||||
|
### Python Patch ###
|
||||||
|
poetry.toml
|
||||||
|
|
||||||
|
# ruff
|
||||||
|
.ruff_cache/
|
||||||
|
|
||||||
|
# LSP config files
|
||||||
|
pyrightconfig.json
|
||||||
|
|
||||||
|
### venv ###
|
||||||
|
[Bb]in
|
||||||
|
[Ii]nclude
|
||||||
|
[Ll]ib
|
||||||
|
[Ll]ib64
|
||||||
|
[Ll]ocal
|
||||||
|
[Ss]cripts
|
||||||
|
pyvenv.cfg
|
||||||
|
pip-selfcheck.json
|
||||||
@@ -27,7 +27,10 @@ Genervtheit
|
|||||||
Gestresstheit
|
Gestresstheit
|
||||||
Gym
|
Gym
|
||||||
Handwerksunternehmen
|
Handwerksunternehmen
|
||||||
|
Higher-Up
|
||||||
|
Higher-Ups
|
||||||
Homeserver
|
Homeserver
|
||||||
|
Hot
|
||||||
Immigrationsgeschichte
|
Immigrationsgeschichte
|
||||||
Impro
|
Impro
|
||||||
Improtheater
|
Improtheater
|
||||||
@@ -51,6 +54,7 @@ Meta
|
|||||||
Mods
|
Mods
|
||||||
Mono
|
Mono
|
||||||
Ne
|
Ne
|
||||||
|
Nights
|
||||||
Orgas
|
Orgas
|
||||||
Paper
|
Paper
|
||||||
Platformer
|
Platformer
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ Arrabbiata
|
|||||||
Asiahung
|
Asiahung
|
||||||
Aule
|
Aule
|
||||||
Aules
|
Aules
|
||||||
|
Autoencoder
|
||||||
Babybel
|
Babybel
|
||||||
Baez
|
Baez
|
||||||
Barros
|
Barros
|
||||||
@@ -31,6 +32,7 @@ Brusch
|
|||||||
CAR
|
CAR
|
||||||
CATS
|
CATS
|
||||||
CDSS
|
CDSS
|
||||||
|
CORE
|
||||||
CUDA
|
CUDA
|
||||||
Carré
|
Carré
|
||||||
Casper
|
Casper
|
||||||
@@ -38,6 +40,7 @@ Caspers
|
|||||||
Cato
|
Cato
|
||||||
CdE
|
CdE
|
||||||
CdEs
|
CdEs
|
||||||
|
Cewe
|
||||||
Chrysalis
|
Chrysalis
|
||||||
Color
|
Color
|
||||||
Combi
|
Combi
|
||||||
@@ -51,10 +54,11 @@ Darth
|
|||||||
DeepSeek
|
DeepSeek
|
||||||
Dekarldent
|
Dekarldent
|
||||||
Delivery
|
Delivery
|
||||||
Destiny 2
|
Destiny
|
||||||
Distrobox
|
Distrobox
|
||||||
Doom
|
Doom
|
||||||
Doyma
|
Doyma
|
||||||
|
Dressler
|
||||||
EasyEffects
|
EasyEffects
|
||||||
Eckhoff
|
Eckhoff
|
||||||
Edain
|
Edain
|
||||||
@@ -111,6 +115,7 @@ JT
|
|||||||
Jacobin
|
Jacobin
|
||||||
Jeanine
|
Jeanine
|
||||||
Jojen
|
Jojen
|
||||||
|
Jungjohann
|
||||||
Karamasov
|
Karamasov
|
||||||
Keep
|
Keep
|
||||||
Keycap
|
Keycap
|
||||||
@@ -118,6 +123,8 @@ Kingdoms
|
|||||||
Kluge
|
Kluge
|
||||||
KohakuHub
|
KohakuHub
|
||||||
Kratom
|
Kratom
|
||||||
|
KreativAkademie
|
||||||
|
Kreyenbrück
|
||||||
Kreyenhop
|
Kreyenhop
|
||||||
Kubitschek
|
Kubitschek
|
||||||
Käte
|
Käte
|
||||||
@@ -163,6 +170,7 @@ Neovim
|
|||||||
NetworkManager
|
NetworkManager
|
||||||
NextCloud
|
NextCloud
|
||||||
Nim
|
Nim
|
||||||
|
Njinmah
|
||||||
Nobody
|
Nobody
|
||||||
Noel
|
Noel
|
||||||
North
|
North
|
||||||
@@ -189,6 +197,7 @@ Pluribus
|
|||||||
PopOS
|
PopOS
|
||||||
Portainer
|
Portainer
|
||||||
Power
|
Power
|
||||||
|
Pratik
|
||||||
Precision
|
Precision
|
||||||
Precon
|
Precon
|
||||||
Precons
|
Precons
|
||||||
@@ -236,6 +245,7 @@ Tornow
|
|||||||
TrackPoint
|
TrackPoint
|
||||||
Traefik
|
Traefik
|
||||||
UDEV
|
UDEV
|
||||||
|
UMAP
|
||||||
Umbar
|
Umbar
|
||||||
V1del
|
V1del
|
||||||
VIM
|
VIM
|
||||||
@@ -251,6 +261,7 @@ WinterAkademie
|
|||||||
Writhing
|
Writhing
|
||||||
X.Org
|
X.Org
|
||||||
Years
|
Years
|
||||||
|
Yorma
|
||||||
Ziegeleiweg
|
Ziegeleiweg
|
||||||
Zimin
|
Zimin
|
||||||
and
|
and
|
||||||
|
|||||||
@@ -22,13 +22,24 @@ return {
|
|||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
local kernels = vim.fn.MoltenAvailableKernels()
|
local kernels = vim.fn.MoltenAvailableKernels()
|
||||||
local try_kernel_name = function()
|
local try_kernel_name = function()
|
||||||
local metadata = vim.json.decode(io.open(e.file, "r"):read("a"))["metadata"]
|
local f = io.open(e.file, "r")
|
||||||
return metadata.kernelspec.name
|
if not f then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
local content = f:read("*a")
|
||||||
|
f:close()
|
||||||
|
local ok, decoded = pcall(vim.json.decode, content)
|
||||||
|
if not ok then
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
return decoded.metadata
|
||||||
|
and decoded.metadata.kernelspec
|
||||||
|
and decoded.metadata.kernelspec.name
|
||||||
end
|
end
|
||||||
local ok, kernel_name = pcall(try_kernel_name)
|
local ok, kernel_name = pcall(try_kernel_name)
|
||||||
if not ok or not vim.tbl_contains(kernels, kernel_name) then
|
if not ok or not vim.tbl_contains(kernels, kernel_name) then
|
||||||
kernel_name = nil
|
kernel_name = nil
|
||||||
local venv = os.getenv("VIRTUAL_ENV") or os.getenv("CONDA_PREFIX")
|
local venv = os.getenv("VIRTUAL_ENV") or os.getenv("CONDA_PREFIX") or ".venv"
|
||||||
if venv ~= nil then
|
if venv ~= nil then
|
||||||
kernel_name = string.match(venv, "/.+/(.+)")
|
kernel_name = string.match(venv, "/.+/(.+)")
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
# HELPER FUNCTIONS #
|
# HELPER FUNCTIONS #
|
||||||
####################
|
####################
|
||||||
|
|
||||||
precmd_vcs_info() { vcs_info }
|
precmd_vcs_info() { vcs_info; }
|
||||||
|
|
||||||
precmd_functions+=( precmd_vcs_info )
|
precmd_functions+=(precmd_vcs_info)
|
||||||
|
|
||||||
zle-line-init() {
|
zle-line-init() {
|
||||||
zle -K viins
|
zle -K viins
|
||||||
echo -ne "\e[5 q"
|
echo -ne "\e[5 q"
|
||||||
}
|
}
|
||||||
|
|
||||||
preexec() { echo -ne '\e[5 q' ;}
|
preexec() { echo -ne '\e[5 q'; }
|
||||||
|
|
||||||
local copy_widgets=(
|
local copy_widgets=(
|
||||||
vi-yank vi-yank-eol vi-delete vi-backward-kill-word vi-change-whole-line
|
vi-yank vi-yank-eol vi-delete vi-backward-kill-word vi-change-whole-line
|
||||||
@@ -22,14 +22,14 @@ local paste_widgets=(
|
|||||||
)
|
)
|
||||||
|
|
||||||
function zle-keymap-select {
|
function zle-keymap-select {
|
||||||
if [[ ${KEYMAP} == vicmd ]] ||
|
if [[ ${KEYMAP} == vicmd ]] ||
|
||||||
[[ $1 = 'block' ]]; then
|
[[ $1 = 'block' ]]; then
|
||||||
echo -ne '\e[1 q'
|
echo -ne '\e[1 q'
|
||||||
elif [[ ${KEYMAP} == main ]] ||
|
elif [[ ${KEYMAP} == main ]] ||
|
||||||
[[ ${KEYMAP} == viins ]] ||
|
[[ ${KEYMAP} == viins ]] ||
|
||||||
[[ ${KEYMAP} == '' ]]; then
|
[[ ${KEYMAP} == '' ]]; then
|
||||||
echo -ne '\e[5 q'
|
echo -ne '\e[5 q'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function x11-clip-wrap-widgets() {
|
function x11-clip-wrap-widgets() {
|
||||||
@@ -59,23 +59,23 @@ function +vi-git-st() {
|
|||||||
local ahead behind remote
|
local ahead behind remote
|
||||||
local -a gitstatus
|
local -a gitstatus
|
||||||
remote=${$(git rev-parse --verify ${hook_com[branch]}@{upstream} \
|
remote=${$(git rev-parse --verify ${hook_com[branch]}@{upstream} \
|
||||||
--symbolic-full-name 2>/dev/null)/refs\/remotes\/}
|
--symbolic-full-name 2>/dev/null)/refs\/remotes\//}
|
||||||
if [[ -n ${remote} ]] ; then
|
if [[ -n ${remote} ]]; then
|
||||||
# for git prior to 1.7
|
# for git prior to 1.7
|
||||||
# ahead=$(git rev-list origin/${hook_com[branch]}..HEAD | wc -l)
|
# ahead=$(git rev-list origin/${hook_com[branch]}..HEAD | wc -l)
|
||||||
ahead=$(git rev-list ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null | wc -l)
|
ahead=$(git rev-list ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null | wc -l)
|
||||||
(( $ahead )) && gitstatus+=( " ${c3}+${ahead}${c2}" )
|
(($ahead)) && gitstatus+=(" ${c3}+${ahead}${c2}")
|
||||||
# for git prior to 1.7
|
# for git prior to 1.7
|
||||||
# behind=$(git rev-list HEAD..origin/${hook_com[branch]} | wc -l)
|
# behind=$(git rev-list HEAD..origin/${hook_com[branch]} | wc -l)
|
||||||
behind=$(git rev-list HEAD..${hook_com[branch]}@{upstream} 2>/dev/null | wc -l)
|
behind=$(git rev-list HEAD..${hook_com[branch]}@{upstream} 2>/dev/null | wc -l)
|
||||||
(( $behind )) && gitstatus+=( "${c4}-${behind}${c2}" )
|
(($behind)) && gitstatus+=("${c4}-${behind}${c2}")
|
||||||
hook_com[branch]="${hook_com[branch]} [${remote}${(j:/:)gitstatus}]"
|
hook_com[branch]="${hook_com[branch]} [${remote}${(j:/:)gitstatus}]"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function +vi-git-stash() {
|
function +vi-git-stash() {
|
||||||
local -a stashes
|
local -a stashes
|
||||||
if [[ -s ${hook_com[base]}/.git/refs/stash ]] ; then
|
if [[ -s ${hook_com[base]}/.git/refs/stash ]]; then
|
||||||
stashes=$(git stash list 2>/dev/null | wc -l)
|
stashes=$(git stash list 2>/dev/null | wc -l)
|
||||||
hook_com[misc]+=" (${stashes} stashed)"
|
hook_com[misc]+=" (${stashes} stashed)"
|
||||||
fi
|
fi
|
||||||
@@ -85,29 +85,116 @@ function +vi-git-stash() {
|
|||||||
# CUSTOM WIDGETS #
|
# CUSTOM WIDGETS #
|
||||||
##################
|
##################
|
||||||
|
|
||||||
_find_venv_upwards() {
|
mkcd() {
|
||||||
local dir="$PWD"
|
mkdir -p -- "$1" &&
|
||||||
|
cd -- "$1"
|
||||||
|
}
|
||||||
|
|
||||||
while [[ "$dir" != "/" ]]; do
|
uv() {
|
||||||
if [[ -f "$dir/pyvenv.cfg" ]]; then
|
if [[ "$1" == "init" ]]; then
|
||||||
echo "$dir"
|
shift
|
||||||
return
|
|
||||||
|
if [[ "$1" == "--normal" ]]; then
|
||||||
|
shift
|
||||||
|
command uv init "$@"
|
||||||
|
else
|
||||||
|
command uv init --bare "$@" || return
|
||||||
|
|
||||||
|
if [[ $# -eq 0 ]]; then
|
||||||
|
command uv venv || return
|
||||||
|
_auto_venv
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
elif [[ "$1" == "sync" ]]; then
|
||||||
|
shift
|
||||||
|
command uv sync "$@" || return
|
||||||
|
_auto_venv
|
||||||
|
else
|
||||||
|
command uv "$@"
|
||||||
fi
|
fi
|
||||||
dir=$(dirname "$dir")
|
}
|
||||||
done
|
|
||||||
|
find_python_root() {
|
||||||
|
local target="$1"
|
||||||
|
local dir
|
||||||
|
|
||||||
|
if [[ -n "$target" && -e "$target" ]]; then
|
||||||
|
dir="$(cd "$(dirname "$target")" && pwd)"
|
||||||
|
else
|
||||||
|
dir="$PWD"
|
||||||
|
fi
|
||||||
|
|
||||||
|
while [[ "$dir" != "/" ]]; do
|
||||||
|
if [[ -f "$dir/.python-version" ]] || [[ -f "$dir/pyproject.toml" ]]; then
|
||||||
|
echo "$dir"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
dir="$(dirname "$dir")"
|
||||||
|
done
|
||||||
|
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
uvshim() {
|
||||||
|
local cmd="$1"
|
||||||
|
shift
|
||||||
|
|
||||||
|
local uv_root=""
|
||||||
|
local first_arg="$1"
|
||||||
|
|
||||||
|
uv_root="$(find_python_root "$first_arg")"
|
||||||
|
|
||||||
|
if [[ -n "$uv_root" ]]; then
|
||||||
|
uv run --project "$uv_root" "$cmd" "$@"
|
||||||
|
else
|
||||||
|
command -- "$cmd" "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
python() { uvshim python "$@"; }
|
||||||
|
|
||||||
|
python3() { uvshim python3 "$@"; }
|
||||||
|
|
||||||
|
pip() {
|
||||||
|
local uv_root
|
||||||
|
uv_root="$(find_python_root)"
|
||||||
|
|
||||||
|
if [[ -n "$uv_root" ]]; then
|
||||||
|
if [[ "$1" == "install" ]]; then
|
||||||
|
shift
|
||||||
|
uv add "$@"
|
||||||
|
else
|
||||||
|
uv pip "$@"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
command pip "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
_find_venv_upwards() {
|
||||||
|
local dir="$PWD"
|
||||||
|
|
||||||
|
while [[ "$dir" != "/" ]]; do
|
||||||
|
if [[ -f "$dir/.venv/pyvenv.cfg" ]]; then
|
||||||
|
echo "$dir/.venv"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
dir=$(dirname "$dir")
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
_auto_venv() {
|
_auto_venv() {
|
||||||
local venv_dir
|
local venv_dir
|
||||||
venv_dir=$(_find_venv_upwards)
|
venv_dir=$(_find_venv_upwards)
|
||||||
|
|
||||||
if [[ -n "$VIRTUAL_ENV" && "$VIRTUAL_ENV" != "$venv_dir" ]]; then
|
if [[ -n "$VIRTUAL_ENV" && "$VIRTUAL_ENV" != "$venv_dir" ]]; then
|
||||||
deactivate 2>/dev/null
|
deactivate 2>/dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "$venv_dir" && "$VIRTUAL_ENV" != "$venv_dir" ]]; then
|
if [[ -n "$venv_dir" && "$VIRTUAL_ENV" != "$venv_dir" ]]; then
|
||||||
source "$venv_dir/bin/activate"
|
source "$venv_dir/bin/activate"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
autoload -U add-zsh-hook
|
autoload -U add-zsh-hook
|
||||||
@@ -116,89 +203,89 @@ _auto_venv
|
|||||||
|
|
||||||
_accept_line() {
|
_accept_line() {
|
||||||
|
|
||||||
# automatically push to remote
|
# automatically push to remote
|
||||||
if [[ "$BUFFER" == "git push" ]]; then
|
if [[ "$BUFFER" == "git push" ]]; then
|
||||||
local branch
|
local branch
|
||||||
branch=$(git symbolic-ref --short HEAD 2>/dev/null)
|
branch=$(git symbolic-ref --short HEAD 2>/dev/null)
|
||||||
|
|
||||||
if [[ -n "$branch" ]]; then
|
if [[ -n "$branch" ]]; then
|
||||||
git rev-parse --abbrev-ref --symbolic-full-name @{u} &>/dev/null
|
git rev-parse --abbrev-ref --symbolic-full-name @{u} &>/dev/null
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
BUFFER="git push -u origin $branch"
|
BUFFER="git push -u origin $branch"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
# use keifu instead of git log --graph
|
|
||||||
if [[ "$BUFFER" =~ ^([a-zA-Z0-9_-]+)[[:space:]]+([a-zA-Z0-9_-]+)(.*)$ ]]; then
|
|
||||||
|
|
||||||
local cmd=${match[1]}
|
|
||||||
local subcmd=${match[2]}
|
|
||||||
local rest=${match[3]}
|
|
||||||
|
|
||||||
# directly via git log --graph
|
|
||||||
if [[ "$cmd" == "git" && "$subcmd" == "log" && "$rest" == *"--graph"* ]]; then
|
|
||||||
BUFFER="keifu"
|
|
||||||
zle accept-line
|
|
||||||
return
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check for git-alias
|
# use keifu instead of git log --graph
|
||||||
if [[ "$cmd" == "git" ]]; then
|
if [[ "$BUFFER" =~ ^([a-zA-Z0-9_-]+)[[:space:]]+([a-zA-Z0-9_-]+)(.*)$ ]]; then
|
||||||
local alias_expansion
|
|
||||||
alias_expansion=$(git config --get "alias.$subcmd" 2>/dev/null)
|
|
||||||
|
|
||||||
if [[ -n "$alias_expansion" && "$alias_expansion" == log*--graph* ]]; then
|
local cmd=${match[1]}
|
||||||
BUFFER="keifu"
|
local subcmd=${match[2]}
|
||||||
zle accept-line
|
local rest=${match[3]}
|
||||||
return
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# shell-alias
|
# directly via git log --graph
|
||||||
if alias "$cmd" &>/dev/null; then
|
if [[ "$cmd" == "git" && "$subcmd" == "log" && "$rest" == *"--graph"* ]]; then
|
||||||
local expansion=$(alias "$cmd")
|
BUFFER="keifu"
|
||||||
expansion=${expansion#*=}
|
zle accept-line
|
||||||
expansion=${expansion#\'}
|
return
|
||||||
expansion=${expansion%\'}
|
|
||||||
|
|
||||||
if [[ "$expansion" =~ --git-dir=([^[:space:]]+) ]]; then
|
|
||||||
local gitdir=${match[1]}
|
|
||||||
|
|
||||||
if [[ "$subcmd" == "log" && "$rest" == *"--graph"* ]]; then
|
|
||||||
BUFFER="(cd $gitdir && keifu)"
|
|
||||||
zle accept-line
|
|
||||||
return
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# git-alias within shell-alias
|
# check for git-alias
|
||||||
local alias_expansion
|
if [[ "$cmd" == "git" ]]; then
|
||||||
alias_expansion=$(git --git-dir="$gitdir" config --get "alias.$subcmd" 2>/dev/null)
|
local alias_expansion
|
||||||
|
alias_expansion=$(git config --get "alias.$subcmd" 2>/dev/null)
|
||||||
|
|
||||||
if [[ -n "$alias_expansion" && "$alias_expansion" == log*--graph* ]]; then
|
if [[ -n "$alias_expansion" && "$alias_expansion" == log*--graph* ]]; then
|
||||||
BUFFER="(cd $gitdir && keifu)"
|
BUFFER="keifu"
|
||||||
zle accept-line
|
zle accept-line
|
||||||
return
|
return
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# swap main and master Fix
|
# shell-alias
|
||||||
if [[ $BUFFER == git\ * ]]; then
|
if alias "$cmd" &>/dev/null; then
|
||||||
local has_main=0
|
local expansion=$(alias "$cmd")
|
||||||
local has_master=0
|
expansion=${expansion#*=}
|
||||||
git rev-parse --verify main >/dev/null 2>&1 && has_main=1
|
expansion=${expansion#\'}
|
||||||
git rev-parse --verify master >/dev/null 2>&1 && has_master=1
|
expansion=${expansion%\'}
|
||||||
if [[ $has_main -eq 1 && $has_master -eq 0 ]]; then
|
|
||||||
BUFFER=${BUFFER//" master"/" main"}
|
|
||||||
fi
|
|
||||||
if [[ $has_master -eq 1 && $has_main -eq 0 ]]; then
|
|
||||||
BUFFER=${BUFFER//" main"/" master"}
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
zle accept-line
|
if [[ "$expansion" =~ --git-dir=([^[:space:]]+) ]]; then
|
||||||
|
local gitdir=${match[1]}
|
||||||
|
|
||||||
|
if [[ "$subcmd" == "log" && "$rest" == *"--graph"* ]]; then
|
||||||
|
BUFFER="(cd $gitdir && keifu)"
|
||||||
|
zle accept-line
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# git-alias within shell-alias
|
||||||
|
local alias_expansion
|
||||||
|
alias_expansion=$(git --git-dir="$gitdir" config --get "alias.$subcmd" 2>/dev/null)
|
||||||
|
|
||||||
|
if [[ -n "$alias_expansion" && "$alias_expansion" == log*--graph* ]]; then
|
||||||
|
BUFFER="(cd $gitdir && keifu)"
|
||||||
|
zle accept-line
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# swap main and master Fix
|
||||||
|
if [[ $BUFFER == git\ * ]]; then
|
||||||
|
local has_main=0
|
||||||
|
local has_master=0
|
||||||
|
git rev-parse --verify main >/dev/null 2>&1 && has_main=1
|
||||||
|
git rev-parse --verify master >/dev/null 2>&1 && has_master=1
|
||||||
|
if [[ $has_main -eq 1 && $has_master -eq 0 ]]; then
|
||||||
|
BUFFER=${BUFFER//" master"/" main"}
|
||||||
|
fi
|
||||||
|
if [[ $has_master -eq 1 && $has_main -eq 0 ]]; then
|
||||||
|
BUFFER=${BUFFER//" main"/" master"}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
zle accept-line
|
||||||
}
|
}
|
||||||
|
|
||||||
zle -N _accept_line
|
zle -N _accept_line
|
||||||
@@ -247,7 +334,7 @@ setopt prompt_subst
|
|||||||
|
|
||||||
# copy to x11 clipboard
|
# copy to x11 clipboard
|
||||||
x11-clip-wrap-widgets copy $copy_widgets
|
x11-clip-wrap-widgets copy $copy_widgets
|
||||||
x11-clip-wrap-widgets paste $paste_widgets
|
x11-clip-wrap-widgets paste $paste_widgets
|
||||||
|
|
||||||
# enable colors
|
# enable colors
|
||||||
autoload -U colors && colors
|
autoload -U colors && colors
|
||||||
@@ -308,17 +395,14 @@ autoload -Uz compinit && compinit
|
|||||||
|
|
||||||
# open shell with tmux always
|
# open shell with tmux always
|
||||||
if [[ -n "$PS1" ]] && [[ -z "$TMUX" ]] && [[ -n "$SSH_CONNECTION" ]]; then
|
if [[ -n "$PS1" ]] && [[ -z "$TMUX" ]] && [[ -n "$SSH_CONNECTION" ]]; then
|
||||||
tmux attack-session -t $USER || tmux new-session -s $USER
|
tmux attach-session -t $USER || tmux new-session -s $USER
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# thefuck
|
# thefuck
|
||||||
eval $(thefuck --alias)
|
eval $(thefuck --alias)
|
||||||
|
|
||||||
# python
|
|
||||||
eval "$(pyenv init -)"
|
|
||||||
|
|
||||||
# opam
|
# opam
|
||||||
[[ ! -r "$HOME/.opam/opam-init/init.zsh" ]] || source "$HOME/.opam/opam-init/init.zsh" > /dev/null 2> /dev/null
|
[[ ! -r "$HOME/.opam/opam-init/init.zsh" ]] || source "$HOME/.opam/opam-init/init.zsh" >/dev/null 2>/dev/null
|
||||||
|
|
||||||
##########################
|
##########################
|
||||||
# COMMANDS BEFORE PROMPT #
|
# COMMANDS BEFORE PROMPT #
|
||||||
|
|||||||
136
.local/bin/etc/gitignore
Executable file
136
.local/bin/etc/gitignore
Executable file
@@ -0,0 +1,136 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/gitignore"
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
cat <<EOF
|
||||||
|
Usage:
|
||||||
|
gitignore TEMPLATE...
|
||||||
|
Create a new .gitignore from templates.
|
||||||
|
|
||||||
|
gitignore -f TEMPLATE...
|
||||||
|
Overwrite existing .gitignore.
|
||||||
|
|
||||||
|
gitignore --add TEMPLATE...
|
||||||
|
Append templates to existing .gitignore.
|
||||||
|
|
||||||
|
gitignore --list
|
||||||
|
List available templates.
|
||||||
|
|
||||||
|
gitignore --show TEMPLATE
|
||||||
|
Show a template.
|
||||||
|
|
||||||
|
Templates are searched in:
|
||||||
|
$CONFIG_DIR
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
list_templates() {
|
||||||
|
[ -d "$CONFIG_DIR" ] || exit 0
|
||||||
|
|
||||||
|
find "$CONFIG_DIR" -type f -exec basename {} \; | sort
|
||||||
|
}
|
||||||
|
|
||||||
|
show_template() {
|
||||||
|
file="$CONFIG_DIR/$1"
|
||||||
|
|
||||||
|
if [ ! -f "$file" ]; then
|
||||||
|
echo "Unknown template: $1" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat "$file"
|
||||||
|
}
|
||||||
|
|
||||||
|
append_template() {
|
||||||
|
template="$1"
|
||||||
|
file="$CONFIG_DIR/$template"
|
||||||
|
|
||||||
|
if [ ! -f "$file" ]; then
|
||||||
|
echo "Unknown template: $template" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
{
|
||||||
|
echo
|
||||||
|
echo "# --- $template ---"
|
||||||
|
cat "$file"
|
||||||
|
} >> .gitignore
|
||||||
|
}
|
||||||
|
|
||||||
|
create_gitignore() {
|
||||||
|
mode="$1"
|
||||||
|
shift
|
||||||
|
|
||||||
|
if [ -f .gitignore ] && [ "$mode" != "force" ]; then
|
||||||
|
echo ".gitignore already exists." >&2
|
||||||
|
echo "Use -f to overwrite or --add to append." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
: > .gitignore
|
||||||
|
|
||||||
|
for template in "$@"; do
|
||||||
|
append_template "$template"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
add_templates() {
|
||||||
|
[ -f .gitignore ] || touch .gitignore
|
||||||
|
|
||||||
|
for template in "$@"; do
|
||||||
|
append_template "$template"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
--help|-h)
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
|
||||||
|
--list)
|
||||||
|
list_templates
|
||||||
|
;;
|
||||||
|
|
||||||
|
--show)
|
||||||
|
shift
|
||||||
|
|
||||||
|
[ $# -eq 1 ] || {
|
||||||
|
echo "--show requires exactly one template" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
show_template "$1"
|
||||||
|
;;
|
||||||
|
|
||||||
|
--add)
|
||||||
|
shift
|
||||||
|
|
||||||
|
[ $# -gt 0 ] || {
|
||||||
|
echo "No templates specified" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
add_templates "$@"
|
||||||
|
;;
|
||||||
|
|
||||||
|
-f)
|
||||||
|
shift
|
||||||
|
|
||||||
|
[ $# -gt 0 ] || {
|
||||||
|
echo "No templates specified" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
create_gitignore force "$@"
|
||||||
|
;;
|
||||||
|
|
||||||
|
"")
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
create_gitignore normal "$@"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -14,43 +14,60 @@ vipercmd="carbon" #"silicon"
|
|||||||
|
|
||||||
cd "$dir" || exit
|
cd "$dir" || exit
|
||||||
|
|
||||||
textype() { \
|
has_python_version() {
|
||||||
command="pdflatex --shell-escape"
|
dir="$PWD"
|
||||||
( sed 5q "$file" | grep -i -q 'xelatex' ) && command="xelatex"
|
while [ "$dir" != "/" ]; do
|
||||||
$command --output-directory="$dir" "$base" &&
|
if [ -f "$dir/.python-version" ] || [ -f "$dir/pyproject.toml" ]; then
|
||||||
grep -i addbibresource "$file" >/dev/null &&
|
return 0
|
||||||
biber --input-directory "$dir" "$base" &&
|
fi
|
||||||
$command --output-directory="$dir" "$base" &&
|
dir=$(dirname "$dir")
|
||||||
|
done
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
textype() {
|
||||||
|
command="pdflatex --shell-escape"
|
||||||
|
(sed 5q "$file" | grep -i -q 'xelatex') && command="xelatex"
|
||||||
|
$command --output-directory="$dir" "$base" &&
|
||||||
|
grep -i addbibresource "$file" >/dev/null &&
|
||||||
|
biber --input-directory "$dir" "$base" &&
|
||||||
|
$command --output-directory="$dir" "$base" &&
|
||||||
makeglossaries "$basenodir" &&
|
makeglossaries "$basenodir" &&
|
||||||
$command --output-directory="$dir" "$base"
|
$command --output-directory="$dir" "$base"
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$file" in
|
case "$file" in
|
||||||
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;;
|
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf >"$base".pdf ;;
|
||||||
*\.bash) bash "$file" ;;
|
*\.bash) bash "$file" ;;
|
||||||
*\.go) go run "$file" ;;
|
*\.go) go run "$file" ;;
|
||||||
*\.lua) lua "$file" ;;
|
*\.lua) lua "$file" ;;
|
||||||
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
|
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
|
||||||
*\.mom) refer -PS -e "$file" | groff -mom -kept -T pdf > "$base".pdf ;;
|
*\.mom) refer -PS -e "$file" | groff -mom -kept -T pdf >"$base".pdf ;;
|
||||||
*\.ms) refer -PS -e "$file" | groff -me -ms -kept -T pdf > "$base".pdf ;;
|
*\.ms) refer -PS -e "$file" | groff -me -ms -kept -T pdf >"$base".pdf ;;
|
||||||
*\.py) python3 "$file" ;;
|
*\.py)
|
||||||
*\.rmd) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
|
if has_python_version; then
|
||||||
*\.sent) setsid sent "$file" 2>/dev/null & ;;
|
uv run python "$file"
|
||||||
*config.h) sudo make install ;;
|
else
|
||||||
*\.c) if [ -f Makefile ]; then make run; else cc "$file" -o "$base" && "$base"; fi ;;
|
python3 "$file"
|
||||||
*\.java) java "$file" ;;
|
fi
|
||||||
*\.js) node "$file" ;;
|
;;
|
||||||
*\.m) octave -qW "$file" ;;
|
*\.rmd) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
|
||||||
*\.nim) nim c -r -d:noColors "$file" ;;
|
*\.sent) setsid sent "$file" 2>/dev/null & ;;
|
||||||
*\.r|*\.R) Rscript "$file" ;;
|
*config.h) sudo make install ;;
|
||||||
*\.rs) (cd "$dir" && cargo locate-project >/dev/null 2>&1) \
|
*\.c) if [ -f Makefile ]; then make run; else cc "$file" -o "$base" && "$base"; fi ;;
|
||||||
&& (cd "$(dirname "$(cd "$dir" && cargo locate-project --message-format plain)")" && cargo run) \
|
*\.java) java "$file" ;;
|
||||||
|| (rustc "$file" && "./$(basename "${file%.rs}")") ;;
|
*\.js) node "$file" ;;
|
||||||
*\.sh) dash "$file" ;;
|
*\.m) octave -qW "$file" ;;
|
||||||
*\.smt2) z3 "$file" ;;
|
*\.nim) nim c -r -d:noColors "$file" ;;
|
||||||
*\.tex) textype "$file" ;;
|
*\.r | *\.R) Rscript "$file" ;;
|
||||||
*\.vpr) $vipercmd "$file" ;;
|
*\.rs) (cd "$dir" && cargo locate-project >/dev/null 2>&1) &&
|
||||||
*\.zsh) zsh "$file" ;;
|
(cd "$(dirname "$(cd "$dir" && cargo locate-project --message-format plain)")" && cargo run) ||
|
||||||
*\.ly) lilypond "$file" ;;
|
(rustc "$file" && "./$(basename "${file%.rs}")") ;;
|
||||||
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
|
*\.sh) dash "$file" ;;
|
||||||
|
*\.smt2) z3 "$file" ;;
|
||||||
|
*\.tex) textype "$file" ;;
|
||||||
|
*\.vpr) $vipercmd "$file" ;;
|
||||||
|
*\.zsh) zsh "$file" ;;
|
||||||
|
*\.ly) lilypond "$file" ;;
|
||||||
|
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
@@ -7,8 +7,8 @@
|
|||||||
device=${LOOPBACK_DEVICE:-Easy Effects Source}
|
device=${LOOPBACK_DEVICE:-Easy Effects Source}
|
||||||
|
|
||||||
name=$(wpctl status | sed -n '/Sources/,$p' | sed -n '/Filter/q;p' | grep "$device" | sed -e "s/*/\ /g")
|
name=$(wpctl status | sed -n '/Sources/,$p' | sed -n '/Filter/q;p' | grep "$device" | sed -e "s/*/\ /g")
|
||||||
id=$( echo $name | cut -d '.' -f 1 | cut -c 5-)
|
ident=$(wpctl status | sed -n '/Sources/,$p' | sed -n '/Filter/q;p' | grep "$device" | grep -oE '[0-9]+\.' | tr -d '.')
|
||||||
node=$(wpctl inspect $id | grep node.name | cut -d '=' -f 2)
|
node=$(wpctl inspect $ident | grep node.name | cut -d '=' -f 2)
|
||||||
|
|
||||||
[ -z "$2" ] && num="5" || num="$2"
|
[ -z "$2" ] && num="5" || num="$2"
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@ case "$1" in
|
|||||||
loop) playerctl loop none
|
loop) playerctl loop none
|
||||||
sleep 1
|
sleep 1
|
||||||
pkill -RTMIN+9 $STATUSBAR ;;
|
pkill -RTMIN+9 $STATUSBAR ;;
|
||||||
tap) wpctl set-volume $id 1.0
|
tap) wpctl set-volume $ident 1.0
|
||||||
touch ~/.local/state/loopback.lock
|
touch ~/.local/state/loopback.lock
|
||||||
pw-loopback -C $node &
|
pw-loopback -C $node &
|
||||||
notify-send -u low 'sxhkd' "Started loopback of $device" ;;
|
notify-send -u low 'sxhkd' "Started loopback of $device" ;;
|
||||||
|
|||||||
12
.profile
12
.profile
@@ -72,18 +72,6 @@ export VIPER_CARBON=""
|
|||||||
export VIPER_Z3="/bin/z3"
|
export VIPER_Z3="/bin/z3"
|
||||||
export VIPER_BOOGIE="$HOME/.dotnet/tools/boogie"
|
export VIPER_BOOGIE="$HOME/.dotnet/tools/boogie"
|
||||||
|
|
||||||
# python
|
|
||||||
export PYENV_ROOT="$HOME/.pyenv"
|
|
||||||
|
|
||||||
if [ -d "$PYENV_ROOT" ] && [ -x "PYENV_ROOT/bin/pyenv" ]; then
|
|
||||||
export PATH="$PYENV_ROOT/bin:$PATH"
|
|
||||||
if command -v timeout >/DEV/NULL 2>&1; then
|
|
||||||
timeout 2s -c sh -c 'eval "$($PYENV_ROOT/bin/pyenv init --path)"' 2>/dev/null
|
|
||||||
else
|
|
||||||
eval "$($PYENV_ROOT/bin/pyenv init --path 2>/dev/null)" || true
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# less/man colors
|
# less/man colors
|
||||||
export LESS=-R
|
export LESS=-R
|
||||||
export LESS_TERMCAP_mb="$(printf '%b' '[1;31m')"; a="${a%_}"
|
export LESS_TERMCAP_mb="$(printf '%b' '[1;31m')"; a="${a%_}"
|
||||||
|
|||||||
Reference in New Issue
Block a user