Compare commits

...

2 commits

Author SHA1 Message Date
94b9c83508 fix toml errors 2022-12-17 21:09:26 -06:00
b1b1a4ad2c remove stickybit highlight 2022-12-17 21:09:26 -06:00
2 changed files with 6 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[global]
target = "~/bin"
asset_filters = "^musl"
target = "~/bin/"
asset_filters = ["^musl"]
["ellie/atuin"]
@ -15,7 +15,7 @@ file = "btm"
["cli/cli"]
asset_filters = ["linux_amd64.tar.gz"]
target = "gh"
target = "~/bin/gh"
["dandavison/delta"]
asset_filters = ["x86_64-unknown-linux-gnu"]
@ -28,7 +28,8 @@ asset_filters = ["x86_64-unknown-linux-gnu"]
["junegunn/fzf"]
["dundee/gdu"]
asset_filters = ["gdu_linux_amd64.tgz"]
asset_filters = ["gdu_linux_amd64.tgz", "^gdu_linux_amd64_static.tgz"]
target = "~/bin/gdu"
["profclems/glab"]
asset_filters = ["Linux_x86_64.tar.gz"]

View file

@ -11,7 +11,7 @@ export HISTFILESIZE="${HISTSIZE}"
export SAVEHIST=4096
export HISTCONTROL=ignoredups:erasedups
export LESS='-R'
export LS_COLORS="$LS_COLORS:ow=1;34:tw=1;34:"
export LS_COLORS="ow=1;34:tw=1;34:st=00;"
# add completions to fpath
fpath=($DOTFILES_DIR/lib/completions $fpath)