update from avior
This commit is contained in:
parent
4a306b5c90
commit
305182f69b
6 changed files with 31 additions and 12 deletions
|
@ -47,14 +47,13 @@
|
||||||
"[typescriptreact]": {
|
"[typescriptreact]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
"[glsl]": {
|
|
||||||
"editor.defaultFormatter": "raczzalan.webgl-glsl-editor"
|
|
||||||
},
|
|
||||||
|
|
||||||
"cSpell.language": "en,de-DE",
|
"cSpell.language": "en,de-DE",
|
||||||
|
"files.associations": {
|
||||||
"latex-workshop.latex.recipe.default": "lastUsed",
|
"*.json5": "jsonc"
|
||||||
"latex-workshop.view.pdf.viewer": "tab",
|
},
|
||||||
"latex-workshop.chktex.enabled": true,
|
"HuggingFaceCode.modelIdOrEndpoint": "https://alpha.starcoder.tngtech.com:8443/api/generate/",
|
||||||
"ltex.additionalRules.motherTongue": "de-DE"
|
"[javascriptreact]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -1,7 +1,7 @@
|
||||||
[submodule ".tmux/plugins/tpm"]
|
[submodule ".config/tmux/plugins/tpm"]
|
||||||
path = .tmux/plugins/tpm
|
path = .config/tmux/plugins/tpm
|
||||||
url = https://github.com/tmux-plugins/tpm
|
url = https://github.com/tmux-plugins/tpm
|
||||||
[submodule "backgrounds"]
|
[submodule ".local/share/backgrounds"]
|
||||||
path = .local/share/backgrounds
|
path = .local/share/backgrounds
|
||||||
url = git@git.f3l.de:saluu/backgrounds.git
|
url = git@git.f3l.de:saluu/backgrounds.git
|
||||||
[submodule ".vim/pack/colors/opt/onedark.vim"]
|
[submodule ".vim/pack/colors/opt/onedark.vim"]
|
||||||
|
|
13
.local/bin/ykfde-passphrase.sh
Executable file
13
.local/bin/ykfde-passphrase.sh
Executable file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
echo " > Please provide the challenge."
|
||||||
|
printf " Enter challenge: "
|
||||||
|
read -r -s YKFDE_CHALLENGE
|
||||||
|
[ "$YKFDE_CHALLENGE" ] && YKFDE_CHALLENGE="$(printf %s "$YKFDE_CHALLENGE" | sha256sum | awk '{print $1}')"
|
||||||
|
echo
|
||||||
|
|
||||||
|
YKFDE_RESPONSE="$(printf %s "$YKFDE_CHALLENGE" | ykchalresp -2 -i- | tr -d '\n')" || true
|
||||||
|
YKFDE_PASSPHRASE="$YKFDE_CHALLENGE$YKFDE_RESPONSE"
|
||||||
|
|
||||||
|
echo "$YKFDE_PASSPHRASE"
|
|
@ -1 +1 @@
|
||||||
Subproject commit ff7b30ebd2faed7bf2de599ec9f340cffb29a4a4
|
Subproject commit f209c5b6741e6cf847bf4a77e19f2fbf6ffc5290
|
|
@ -9,3 +9,10 @@ alias ts='watson log -dcj | watson2timesheet'
|
||||||
# SDKMAN!
|
# SDKMAN!
|
||||||
export SDKMAN_DIR="$HOME/.sdkman"
|
export SDKMAN_DIR="$HOME/.sdkman"
|
||||||
[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ] && . "$SDKMAN_DIR/bin/sdkman-init.sh"
|
[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ] && . "$SDKMAN_DIR/bin/sdkman-init.sh"
|
||||||
|
|
||||||
|
# Terraform
|
||||||
|
complete -o nospace -C /home/loherj/.terraform.versions/terraform_1.3.6 terraform
|
||||||
|
export TF_PLUGIN_CACHE_DIR="$HOME/.terraform.d/plugin-cache"
|
||||||
|
|
||||||
|
# Vault
|
||||||
|
export VAULT_ADDR=https://vault.srv.reu.bsh-lando.com
|
||||||
|
|
Loading…
Reference in a new issue