Compare commits
No commits in common. "d5e02973addd6a30ae93ae01fb42b7e03c96f9b6" and "85e0bb62361a16ba0507c96b09d2a5802418498e" have entirely different histories.
d5e02973ad
...
85e0bb6236
9 changed files with 21 additions and 40 deletions
|
@ -59,7 +59,6 @@ def check-exe [] {
|
|||
}
|
||||
|
||||
def compare-versions [] {
|
||||
each {||
|
||||
let repo = $in
|
||||
let $bin = $repo | repo-to-bin
|
||||
if not ($bin | check-exe) { return }
|
||||
|
@ -70,7 +69,6 @@ latest: ($latest)
|
|||
current:
|
||||
($current)
|
||||
"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -85,5 +83,5 @@ current:
|
|||
zyedidia/eget
|
||||
prefix-dev/pixi
|
||||
]
|
||||
| compare-versions
|
||||
| each {|| $in | compare-versions}
|
||||
| ignore
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
PREFIX='%C(bold magenta)%h%C(reset)' # hash
|
||||
SUFFIX='%C(auto)%d%C(reset) %C(dim white)%aN%C(reset)|%C(green)%ar%C(reset)' # branch, author, time
|
||||
format="$PREFIX %C(bold)%s%C(reset)$SUFFIX"
|
||||
|
||||
COLUMNS=$(tput cols)
|
||||
PREFIX='%C(bold magenta)%h%C(reset)'
|
||||
SUFFIX='%C(dim white)%aN%C(reset)%C(auto)%d%C(reset)'
|
||||
|
||||
if [[ "$COLUMNS" -gt 100 ]]; then
|
||||
format='%C(bold)%<(50,trunc)%s%C(reset) %C(green)%><(15,trunc)%ar%C(reset)'
|
||||
else
|
||||
format='%C(bold)%s%C(reset) %C(green)%as%C(reset)'
|
||||
fi
|
||||
|
||||
format="$PREFIX $format $SUFFIX"
|
||||
|
||||
exec git \
|
||||
log \
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
#!/usr/bin/env nu
|
||||
|
||||
if (which cargo | length) == 0 {
|
||||
print -e $"(ansi red)cargo not found(ansi reset)"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cargo install nu_plugin_polars
|
||||
|
||||
glob ~/.cargo/bin/nu_plugin_*
|
||||
| each { |name|
|
||||
print -e $">> (ansi cyan)($name)(ansi reset)"
|
||||
try {
|
||||
plugin add $name
|
||||
} catch { |err|
|
||||
print -e $"(ansi red)($err.msg)(ansi reset)"
|
||||
}
|
||||
}
|
||||
| ignore
|
|
@ -1,4 +1,6 @@
|
|||
[Settings]
|
||||
; gtk-icon-theme-name=breeze
|
||||
; gtk-theme-name=Catppuccin-Mocha-Standard-Rosewater-Dark
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-cursor-theme-name=Catppuccin-Mocha-Mauve-Cursors
|
||||
gtk-cursor-theme-size=24
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
if [ $# -eq 0 ];
|
||||
then
|
||||
curl -s cheat.sh | less -R
|
||||
else
|
||||
curl -s cheat.sh/${@} | less -R
|
||||
fi
|
|
@ -1,3 +1,8 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
llm -s "Answer in as few words as possible. Use a brief style with short replies." -m claude-3.5-sonnet "$*"
|
||||
if [ $# -eq 0 ];
|
||||
then
|
||||
curl -s cheat.sh | less -R
|
||||
else
|
||||
curl -s cheat.sh/${@} | less -R
|
||||
fi
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
llm -m claude-3-haiku "$*"
|
|
@ -1,3 +0,0 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
llm -m claude-3-opus "$*"
|
Loading…
Reference in a new issue