summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2024-04-27 18:42:54 +0200
committerMarc Vertes <mvertes@free.fr>2024-04-27 18:42:54 +0200
commit283b1f2d281515d325f7e31cfb12b8bbe4a2164d (patch)
tree9010c996c11de5d8bdca517135c700d4e77efeda
initial commit
-rw-r--r--.gitignore1
-rw-r--r--.profile3
-rw-r--r--.shrc11
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
diff --git a/.shrc b/.shrc
new file mode 100644
index 0000000..a29e6f7
--- /dev/null
+++ b/.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"; }