Compare commits

..

12 commits

Author SHA1 Message Date
3b88ee0494
Alias podman to docker 2024-09-19 08:57:51 -04:00
be00d3d0fc
Use nvim for diffing 2024-09-19 08:54:57 -04:00
1d5dc82223
Allow ripgrep to search hidden in dotfiles
Do I actually just want this everywhere?
2024-09-19 08:53:25 -04:00
913b6d7496
Install podman 2024-05-29 08:30:40 -04:00
1452aa0e4e
Include full name for brew installer 2024-05-27 10:39:01 -04:00
1e5c0fca77
( ͡° ͜ʖ ͡°) 2024-05-27 09:42:25 -04:00
4b52701d6b
Add freecad 2024-05-27 09:42:25 -04:00
c401c53900
go-releaser 2024-05-27 09:42:24 -04:00
8d11eb3b04
Add openapi-generator 2024-04-26 17:01:51 -04:00
b344292bb8
Remove orbstack 2024-04-10 21:43:02 -04:00
8c7d7298a6
iperf3 2024-03-26 03:58:03 -04:00
1f329afefd
Swap to toml configuration for alacritty 2024-02-18 22:24:51 -05:00
14 changed files with 36 additions and 25 deletions

2
.gitignore vendored
View file

@ -1,6 +1,6 @@
*.swp
alacritty/.config/alacritty/alacritty.toml
alacritty/.config/alacritty/theme.toml
bin/bin

4
.mise.toml Normal file
View file

@ -0,0 +1,4 @@
[env]
RIPGREP_CONFIG_PATH = "./.ripgreprc"
# private configuration to go in .mise.local.toml

1
.ripgreprc Normal file
View file

@ -0,0 +1 @@
--hidden

View file

@ -1,3 +1,7 @@
import = [
"~/.config/alacritty/theme.toml",
]
[window]
opacity = 0.9

View file

@ -15,7 +15,6 @@ magenta = '0xb16286'
cyan = '0x689d6a'
white = '0xa89984'
# Bright colors
[colors.bright]
black = '0x928374'
red = '0xfb4934'

View file

@ -1,13 +1,7 @@
# Colors (Gruvbox light)
[colors.bright]
black = "0x928374"
blue = "0x076678"
cyan = "0x427b58"
green = "0x79740e"
magenta = "0x8f3f71"
red = "0x9d0006"
white = "0x3c3836"
yellow = "0xb57614"
[colors.primary]
background = "0xfbf1c7"
foreground = "0x3c3836"
[colors.normal]
black = "0xfbf1c7"
@ -19,6 +13,12 @@ red = "0xcc241d"
white = "0x7c6f64"
yellow = "0xd79921"
[colors.primary]
background = "0xfbf1c7"
foreground = "0x3c3836"
[colors.bright]
black = "0x928374"
blue = "0x076678"
cyan = "0x427b58"
green = "0x79740e"
magenta = "0x8f3f71"
red = "0x9d0006"
white = "0x3c3836"
yellow = "0xb57614"

View file

@ -13,11 +13,10 @@ else
new_color=dark
fi
alacritty_header=" # Dynamically generated. Edit $HOME/.config/alacritty/alacritty-base.toml"
alacritty=$HOME/.config/alacritty/
echo $alacritty_header > $alacritty/alacritty.toml
cat $alacritty/alacritty-base.toml $alacritty/themes/$new_color.toml >> $alacritty/alacritty.toml
ln -sf $alacritty/themes/$new_color.toml $alacritty/theme.toml
# Alacritty does not notice update of imported symlink
touch $alacritty/alacritty.toml
echo $new_color > $color_file

View file

@ -23,7 +23,7 @@
program = gpg
[merge]
tool = vimdiff
tool = nvim -d
[pull]
rebase = false

View file

@ -25,7 +25,7 @@ install_homebrew() {
install_shared_brew_packages() {
echo -n Checking shared brew packages...
missing_packages=$(
comm -23 <(cat packages-shared-brew.txt) <(brew list | sort) \
comm -23 <(cat packages-shared-brew.txt) <(brew list --full-name | sort) \
| tr "\n" " "
)
@ -153,7 +153,7 @@ install_linux_packagges() {
install_darwin_brew_packages() {
echo -n Checking Darwin brew packages...
missing_packages=$(
comm -23 <(cat packages-darwin-brew.txt) <(brew list | sort) \
comm -23 <(cat packages-darwin-brew.txt) <(brew list --full-name | sort) \
| tr "\n" " "
)
@ -177,7 +177,7 @@ install_darwin_brew_cask_packages() {
fi
missing_packages=$(
comm -23 <(cat $package_files | sort) <(brew list | sort) \
comm -23 <(cat $package_files | sort) <(brew list --full-name | sort) \
| tr "\n" " "
)

View file

@ -1,5 +1,5 @@
arduino-ide
battle-net
freecad
minecraft
mqtt-explorer
openscad

View file

@ -5,6 +5,7 @@ discord
firefox
google-chrome
obsidian
podman-desktop
rectangle
slack
zoom

View file

@ -1,4 +1,3 @@
coreutils
gnu-sed
orbstack
session-manager-plugin

View file

@ -9,20 +9,23 @@ gh
git
gmp
gnupg
goreleaser/tap/goreleaser
hurl
iperf3
jq
libpq
libyaml
llvm
mise
neovim
node-build
openapi-generator
openssl@1.1
openssl@3
qmk/qmk/qmk
rar
readline
ripgrep
mise
ruby-build
shared-mime-info
stow

View file

@ -15,6 +15,7 @@ alias c="clear"
alias cs="toggle-color-mode"
alias cdr="git-root"
alias dc="docker-compose-call"
alias docker="podman"
alias g="g" # overwrite g alias
alias ga="git add"
alias gaa="git add --all"