Changes from production

This commit is contained in:
2026-01-13 16:26:34 +01:00
parent 7de1042823
commit a64e7bceff
4 changed files with 13 additions and 0 deletions

4
bin/upper Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
tr '[:lower:]' '[:upper:]' "$@"

5
bin/xvim Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
vim "$@" --cmd 'au VimLeave * :!clear'
clear

View File

@@ -1,5 +1,8 @@
alias nop=':'
alias ll='ls -lah'
alias la='ls -lah'
alias exit-when-error='set -o errexit'
alias exit-when-unset-variable='set -o nounset'
alias exit-when-pipe-fail='set -o pipefail'

1
rc/claude-code.sh Normal file
View File

@@ -0,0 +1 @@
append_path_try $HOME/.local/bin