Skip to content

Commit d82472f

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/main'
2 parents 0c6a4f6 + f895826 commit d82472f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.gitconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
pager = delta
7171

7272
[delta]
73-
max-line-length = 700
73+
max-line-length = 1400
7474
# max-line-distance = 0.3 # better word-diff?
7575
syntax-theme = base16
7676
hyperlinks = true # i filed https://github.com/dandavison/delta/issues/362 but in 2022 i can't see brokenness in the issue nor repro weirdness. but i installed latest `less` anyway
@@ -141,7 +141,7 @@
141141
[merge]
142142
tool = opendiff
143143
renameLimit = 0
144-
# still evaluating if i prefer this 3 item conflict dealio....
144+
# This 3-item conflict style is MUCH better.
145145
conflictstyle = zdiff3
146146

147147

fish/aliases.fish

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ alias ls='eza --classify=auto --color --group-directories-first --sort=extension
2323
alias la='eza --classify=auto --color --group-directories-first --sort=extension -a -l --octal-permissions --no-permissions'
2424

2525
# use gdu (gdu-go) if available, as its faster on ssd
26-
alias ncdu "command -v gdu-go > /dev/null && gdu-go || ncdu"
26+
# Ehh.. yes gdu is much faster but doesnt support ** in ignore/excludes. use them deliberately for now
27+
# alias ncdu "command -v gdu-go > /dev/null && gdu-go || ncdu"
2728

2829
# typos and abbreviations
2930
abbr g git
@@ -147,7 +148,7 @@ function gemi
147148
# gemi "tell me a joke"
148149
if test -z "$argv[1]"
149150
# no markdown parsing here without some real fancy stuff. because you dont want to send to markdown renderer (glow) inbetween backticks, etc.
150-
llm chat --continue -m gemini-2.5-flash
151+
llm chat -m gemini-2.5-flash
151152
else
152153
llm prompt -m gemini-2.5-flash "$argv" && echo "⬇️… and now rendered…⬇️" && llm logs -r | glow
153154
end
@@ -156,7 +157,7 @@ end
156157
function openai
157158
# using llm. same dealio as above
158159
if test -z "$argv[1]"
159-
llm chat --continue -m gpt-4o
160+
llm chat -m gpt-4o
160161
else
161162
llm prompt -m gpt-4o "$argv" && echo "⬇️… and now rendered…⬇️" && llm logs -r | glow
162163
end

fish/chromium.fish

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ end
5757
function dtb --description "build devtools with watch_build.js - my favorite"
5858
cd ./(git rev-parse --show-cdup)
5959

60-
# dont let vpython use a 2.7.. seems to only affect this dude
61-
VPYTHON_BYPASS="manually managed python not supported by chrome operations" node scripts/watch_build.js
60+
npm run build -- --watch
6261
end
6362

6463

fish/functions/fish_prompt.fish

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ function fish_prompt
221221

222222
# instead of a onetime sourcing like
223223
# test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish
224-
# here's a fancy lazy instantiated integration. but.. still slow and weird.
224+
# here's a fancy lazy instantiated integration. but.. still slow and weird.
225225
# iterms timestamps on scrollbar hover are probably good enough for now.
226226
# but here's the ugly thing i ended up with. prob delete later.
227227
# if not set -q __iterm2_integration_initialized
@@ -294,7 +294,7 @@ function fish_prompt
294294
end
295295

296296
if test -n "$SSH_TTY"
297-
function fish_right_prompt;
297+
function fish_right_prompt;
298298
set_color $fish_color_host
299299
echo -sn "(@" $hostname ")"
300300
set_color normal

0 commit comments

Comments
 (0)