diff options
| author | Marc Vertes <mvertes@free.fr> | 2024-04-27 18:42:54 +0200 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2024-04-27 18:42:54 +0200 |
| commit | 283b1f2d281515d325f7e31cfb12b8bbe4a2164d (patch) | |
| tree | 9010c996c11de5d8bdca517135c700d4e77efeda | |
initial commit
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | .profile | 3 | ||||
| -rw-r--r-- | .shrc | 11 |
3 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +* diff --git a/.profile b/.profile new file mode 100644 index 0000000..1916dec --- /dev/null +++ b/.profile @@ -0,0 +1,3 @@ +export PATH=~/bin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:~/go/bin + +[ "$SHELL" = /bin/ash ] && export ENV=~/.shrc @@ -0,0 +1,11 @@ +export GNUTERM='sixelgd enhanced truecolor font "arial,9"' + +alias cx='chmod +x' +alias ll='ls -alF' +alias w3s='w3m -sixel' +alias sudo=doas +alias sup='doas apk upgrade' +alias apk='doas apk' +alias dotfiles='git --git-dir=$HOME/dotfiles --work-tree=$HOME' + +mkcd() { mkdir -p "$1" && cd "$1"; } |
