Skip to content

Commit f895826

Browse files
committed
zdiff3 is da best. for llm calls dont continue
1 parent 5390f5a commit f895826

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function gemi
148148
# gemi "tell me a joke"
149149
if test -z "$argv[1]"
150150
# no markdown parsing here without some real fancy stuff. because you dont want to send to markdown renderer (glow) inbetween backticks, etc.
151-
llm chat --continue -m gemini-2.5-flash
151+
llm chat -m gemini-2.5-flash
152152
else
153153
llm prompt -m gemini-2.5-flash "$argv" && echo "⬇️… and now rendered…⬇️" && llm logs -r | glow
154154
end
@@ -157,7 +157,7 @@ end
157157
function openai
158158
# using llm. same dealio as above
159159
if test -z "$argv[1]"
160-
llm chat --continue -m gpt-4o
160+
llm chat -m gpt-4o
161161
else
162162
llm prompt -m gpt-4o "$argv" && echo "⬇️… and now rendered…⬇️" && llm logs -r | glow
163163
end

0 commit comments

Comments
 (0)