dots


commit
69a8fb8
parent
15d1311
author
xxwhirlpool
date
2026-01-13 18:14:48 -0500 EST
misc
3 files changed,  +24, -1
M config/.bashrc-laptop
+4, -1
 1@@ -124,7 +124,6 @@ fi
 2 
 3 alias nano=micro
 4 alias sudo="sudo "
 5-alias pick="pastel pick"
 6 alias icat="kitten icat"
 7 alias freeze="freeze -c user $1"
 8 alias fd="fdfind "
 9@@ -158,6 +157,8 @@ alias gyolo="git add . && git commit -m 'yolo'"
10 alias gitd="git diff --staged"
11 alias gdiff="gitd"
12 alias gits="git status"
13+alias gita="git add ."
14+# this is for pushing to my site eunoia.sayitditto.net
15 alias pusheu="git push bytes main && cd /home/kat/Documents/Git/-mine/eunoia-astro/src/utils && node git-changelog.js"
16 
17 # vpn split tunnel aliases based on a small script @ ~/.local/bin/mvpn
18@@ -197,6 +198,8 @@ if [ -f ~/.privatevars ]; then
19   . ~/.privatevars                                                                                         
20 fi
21 
22+export LEDGER_FILE=~/.config/hledger/katmoney.journal
23+
24 ######################################
25 # functions
26 ######################################
M config/.gitconfig
+2, -0
1@@ -12,3 +12,5 @@
2 	gpgsign = true
3 [core]
4 	pager = "batcat --paging=always"
5+[rerere]
6+	enabled = true
M scripts/Scripts/pandoc/md2html.css
+18, -0
 1@@ -83,7 +83,12 @@ a:hover {
 2 
 3 img {
 4 	max-width: 100%;
 5+	height: auto;
 6 	display: block;
 7+	vertical-align: middle;
 8+
 9+	/* for alt text */
10+	font-style: italic;
11 }
12 
13 svg {
14@@ -327,3 +332,16 @@ blockquote {
15 .e-content :is(h2 + *, h3 + *, h4 + *) {
16 	--flow-space: 1rem
17 }
18+
19+details {
20+	margin-block: 1rem 0;
21+}
22+
23+summary {
24+	cursor: pointer;
25+}
26+
27+summary::marker {
28+	content: "\2765  " / "heart";
29+	color: var(--accent-color);
30+}