2023-03-21 14:17:23 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
[ -n "${DEBUG-}" ] && set -x
|
2023-03-22 08:59:25 -04:00
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cd "$(dirname "$0")" || exit 1
|
2023-03-22 08:59:25 -04:00
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
if ! pgrep nix-daemon >/dev/null 2>&1; then
|
|
|
|
sh <"$(curl -L https://nixos.org/nix/install)"
|
2023-03-22 08:59:25 -04:00
|
|
|
fi
|
|
|
|
|
2023-03-21 14:17:23 -04:00
|
|
|
mkdir -p "$HOME/.config"
|
|
|
|
|
|
|
|
mkdir -p "$HOME/.config/nix"
|
2023-07-28 08:28:53 -04:00
|
|
|
if [ ! -f "$HOME/.config/nix/nix.conf" ]; then
|
|
|
|
echo "experimental-features = nix-command flakes" >>"$HOME/.config/nix/nix.conf"
|
2023-03-21 14:17:23 -04:00
|
|
|
echo "trusted-users = root andrew" | sudo tee -a /etc/nix/nix.conf && sudo pkill nix-daemon
|
|
|
|
cachix use devenv
|
2023-03-29 12:00:51 -04:00
|
|
|
nix profile install --accept-flake-config github:cachix/devenv/latest
|
2023-03-21 14:17:23 -04:00
|
|
|
fi
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
has_bin() {
|
2023-03-22 14:37:02 -04:00
|
|
|
[ -e "$HOME/.nix-profile/bin/$1" ]
|
|
|
|
}
|
|
|
|
|
2023-03-28 13:31:35 -04:00
|
|
|
has_bin "atuin" || nix profile install nixpkgs#atuin
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "bash" || nix profile install nixpkgs#bashInteractive
|
|
|
|
has_bin "bat" || nix profile install nixpkgs#bat
|
|
|
|
has_bin "bw" || nix profile install nixpkgs#bitwarden-cli
|
|
|
|
has_bin "broot" || nix profile install nixpkgs#broot
|
|
|
|
has_bin "cargo-dist" || nix profile install nixpkgs#cargo-dist
|
|
|
|
has_bin "cargo-flamegraph" || nix profile install nixpkgs#cargo-flamegraph
|
|
|
|
has_bin "cargo-release" || nix profile install nixpkgs#cargo-release
|
|
|
|
has_bin "cargo-udeps" || nix profile install nixpkgs#cargo-udeps
|
|
|
|
has_bin "cheat" || nix profile install nixpkgs#cheat
|
|
|
|
has_bin "chezmoi" || nix profile install nixpkgs#chezmoi
|
|
|
|
has_bin "croc" || nix profile install nixpkgs#croc
|
|
|
|
has_bin "curlie" || nix profile install nixpkgs#curlie
|
|
|
|
has_bin "delta" || nix profile install nixpkgs#delta
|
2023-04-18 16:45:48 -04:00
|
|
|
has_bin "difft" || nix profile install nixpkgs#difftastic
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "direnv" || nix profile install nixpkgs#direnv
|
|
|
|
has_bin "dnsproxy" || nix profile install nixpkgs#dnsproxy
|
|
|
|
has_bin "dust" || nix profile install nixpkgs#du-dust
|
2023-03-28 13:31:35 -04:00
|
|
|
has_bin "exa" || nix profile install nixpkgs#exa
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "fd" || nix profile install nixpkgs#fd
|
2023-09-11 09:18:15 -04:00
|
|
|
has_bin "flake-checker" || nix profile install github:DeterminateSystems/flake-checker
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "flamegraph" || nix profile install nixpkgs#flamegraph
|
|
|
|
has_bin "fzf" || nix profile install nixpkgs#fzf
|
|
|
|
has_bin "git" || nix profile install nixpkgs#git
|
|
|
|
has_bin "git-gone" || nix profile install nixpkgs#git-gone
|
2023-09-11 09:19:07 -04:00
|
|
|
has_bin "goawk" || nix profile install nixpkgs#goawk
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "grep" || nix profile install nixpkgs#gnugrep
|
|
|
|
has_bin "grex" || nix profile install nixpkgs#grex
|
|
|
|
has_bin "gron" || nix profile install nixpkgs#gron
|
|
|
|
has_bin "gum" || nix profile install nixpkgs#gum
|
|
|
|
has_bin "hexyl" || nix profile install nixpkgs#hexyl
|
|
|
|
has_bin "htop" || nix profile install nixpkgs#htop
|
|
|
|
has_bin "httpie" || nix profile install nixpkgs#httpie
|
|
|
|
has_bin "htmlq" || nix profile install nixpkgs#htmlq
|
|
|
|
has_bin "hyperfine" || nix profile install nixpkgs#hyperfine
|
|
|
|
has_bin "jc" || nix profile install nixpkgs#jc
|
|
|
|
has_bin "jiq" || nix profile install nixpkgs#jiq
|
|
|
|
has_bin "jq" || nix profile install nixpkgs#jq
|
|
|
|
has_bin "jqp" || nix profile install nixpkgs#jqp
|
2023-03-22 15:38:11 -04:00
|
|
|
has_bin "just" || nix profile install nixpkgs#just
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "kibi" || nix profile install nixpkgs#kibi
|
|
|
|
has_bin "kondo" || nix profile install nixpkgs#kondo
|
|
|
|
has_bin "kubie" || nix profile install nixpkgs#kubie
|
|
|
|
has_bin "llama" || nix profile install nixpkgs#llama
|
|
|
|
has_bin "mdbook" || nix profile install nixpkgs#mdbook
|
|
|
|
has_bin "mosh" || nix profile install nixpkgs#mosh
|
2023-07-25 09:30:54 -04:00
|
|
|
has_bin "nix-bisect" || nix profile install nixpkgs#nix-bisect
|
2023-07-28 08:28:53 -04:00
|
|
|
# fails for some odd reason at the moment
|
|
|
|
#has_bin "nix-doc" || nix profile install nixpkgs#nix-doc
|
|
|
|
command -v "nix-doc" >/dev/null || cargo install nix-doc
|
2023-06-05 08:59:16 -04:00
|
|
|
has_bin "nix-init" || nix profile install nixpkgs#nix-init
|
|
|
|
has_bin "nix-search" || nix profile install github:peterldowns/nix-search-cli --refresh
|
|
|
|
has_bin "nurl" || nix profile install nixpkgs#nurl
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "nvim" || nix profile install nixpkgs#neovim
|
|
|
|
has_bin "ouch" || nix profile install nixpkgs#ouch
|
2023-03-22 08:59:25 -04:00
|
|
|
#nix profile install nixpkgs#prettylist
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "q" || nix profile install nixpkgs#q
|
|
|
|
has_bin "rg" || nix profile install nixpkgs#ripgrep
|
|
|
|
has_bin "rq" || jnix profile install nixpkgs#rq
|
|
|
|
has_bin "rustfilt" || nix profile install nixpkgs#rustfilt
|
|
|
|
has_bin "sd" || nix profile install nixpkgs#sd
|
|
|
|
has_bin "shellcheck" || nix profile install nixpkgs#shellcheck
|
|
|
|
has_bin "shfmt" || nix profile install nixpkgs#shfmt
|
2023-07-28 08:28:53 -04:00
|
|
|
has_bin "spacer" || nix profile install nixpkgs#spacer
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "starship" || nix profile install nixpkgs#starship
|
2023-07-25 09:30:54 -04:00
|
|
|
has_bin "terminal-notifier" || nix profile install nixpkgs#terminal-notifier
|
|
|
|
has_bin "tig" || nix profile install nixpkgs#tig
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "tldr" || nix profile install nixpkgs#tealdeer
|
|
|
|
has_bin "tokei" || nix profile install nixpkgs#tokei
|
|
|
|
has_bin "upterm" || nix profile install nixpkgs#upterm
|
|
|
|
has_bin "vim" || nix profile install nixpkgs#vim
|
|
|
|
has_bin "watchexec" || nix profile install nixpkgs#watchexec
|
|
|
|
has_bin "xcp" || nix profile install nixpkgs#xcp
|
|
|
|
has_bin "xh" || nix profile install nixpkgs#xh
|
|
|
|
has_bin "xsv" || nix profile install nixpkgs#xsv
|
2023-07-28 08:28:53 -04:00
|
|
|
has_bin "zenith" || nix profile install nixpkgs#zenith
|
2023-03-22 14:37:02 -04:00
|
|
|
has_bin "zola" || nix profile install nixpkgs#zola
|
|
|
|
has_bin "zoxide" || nix profile install nixpkgs#zoxide
|
2023-03-21 14:17:23 -04:00
|
|
|
|
2023-03-23 09:34:32 -04:00
|
|
|
PATH="$PATH:$HOME/.nix-profile/bin"
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
newest_wezterm_release() {
|
|
|
|
curl -s -H "Accept: application/vnd.github+json" -L https://api.github.com/repos/wez/wezterm/releases/latest | jq -r '.assets | map(select(.name | startswith("WezTerm-macos"))) | first.browser_download_url'
|
2023-03-28 13:31:35 -04:00
|
|
|
}
|
2023-07-28 08:28:53 -04:00
|
|
|
LATEST_WEZTERM=$(newest_wezterm_release)
|
2023-03-28 13:31:35 -04:00
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
install_latest_wezterm() {
|
|
|
|
curl -Lo wezterm.zip "$LATEST_WEZTERM"
|
2023-03-23 09:34:32 -04:00
|
|
|
ouch d wezterm.zip
|
|
|
|
mv WezTerm-macos-*/WezTerm.app /Applications/ && rm -rf wezterm.zip WezTerm-macos-*
|
2023-07-28 08:28:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ ! -e /Applications/WezTerm.app ]; then
|
|
|
|
install_latest_wezterm
|
|
|
|
else
|
|
|
|
current_wezterm=$(/Applications/WezTerm.app/Contents/MacOS/wezterm -V | awk '{print $2}')
|
2023-07-28 08:32:14 -04:00
|
|
|
if ! echo "$LATEST_WEZTERM" | grep "$current_wezterm" >/dev/null; then
|
2023-07-28 08:28:53 -04:00
|
|
|
install_latest_wezterm
|
|
|
|
fi
|
2023-03-23 09:34:32 -04:00
|
|
|
fi
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.wezterm.lua"
|
2023-03-23 09:34:32 -04:00
|
|
|
local wezterm = require 'wezterm'
|
|
|
|
local config = {}
|
|
|
|
|
|
|
|
if wezterm.config_builder then
|
|
|
|
config = wezterm.config_builder()
|
|
|
|
end
|
|
|
|
|
|
|
|
config.font = wezterm.font_with_fallback({
|
|
|
|
{ family = 'Operator Mono', weight = 'Book' },
|
|
|
|
'Symbols Nerd Font'
|
|
|
|
})
|
2023-06-05 08:59:16 -04:00
|
|
|
config.font_size = 22.0
|
2023-03-23 09:34:32 -04:00
|
|
|
config.color_scheme = 'One Light (base16)'
|
|
|
|
config.window_background_opacity = 0.9
|
|
|
|
config.initial_rows = 30
|
|
|
|
config.initial_cols = 120
|
2023-03-23 13:54:06 -04:00
|
|
|
config.use_fancy_tab_bar = false
|
2023-03-24 11:26:39 -04:00
|
|
|
config.mouse_bindings = {
|
|
|
|
{
|
|
|
|
event = { Up = { streak = 1, button = 'Left' } },
|
|
|
|
mods = 'CTRL',
|
|
|
|
action = wezterm.action.OpenLinkAtMouseCursor,
|
|
|
|
},
|
|
|
|
}
|
2023-07-25 09:30:54 -04:00
|
|
|
config.keys = {
|
|
|
|
-- Make Ctrl-b equivalent to Alt-b which many line editors interpret as backward-word
|
|
|
|
{key="b", mods="CTRL", action=wezterm.action{SendString="\x1bb"}},
|
|
|
|
-- Make Ctrl-f equivalent to Alt-f which many line editors interpret as forward-word
|
|
|
|
{key="f", mods="CTRL", action=wezterm.action{SendString="\x1bf"}},
|
|
|
|
}
|
2023-03-23 09:34:32 -04:00
|
|
|
|
|
|
|
return config
|
|
|
|
EOF
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.config/starship.toml"
|
2023-03-29 12:06:13 -04:00
|
|
|
[container]
|
|
|
|
disabled=true
|
|
|
|
EOF
|
2023-03-21 14:17:23 -04:00
|
|
|
|
2023-07-25 09:30:54 -04:00
|
|
|
mkdir -p "$HOME/.config/helix/themes"
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.config/helix/config.toml"
|
2023-07-25 09:30:54 -04:00
|
|
|
theme = "mylight"
|
2023-03-29 12:06:13 -04:00
|
|
|
|
|
|
|
[editor]
|
|
|
|
true-color = true
|
|
|
|
color-modes = true
|
|
|
|
idle-timeout = 75
|
2023-04-18 16:45:48 -04:00
|
|
|
mouse = false
|
2023-06-05 08:59:16 -04:00
|
|
|
bufferline = "multiple"
|
|
|
|
auto-pairs = false
|
2023-03-29 12:06:13 -04:00
|
|
|
|
|
|
|
[editor.indent-guides]
|
|
|
|
render = true
|
|
|
|
|
|
|
|
[editor.cursor-shape]
|
|
|
|
insert = "bar"
|
|
|
|
normal = "block"
|
|
|
|
select = "underline"
|
|
|
|
|
2023-06-05 08:59:16 -04:00
|
|
|
[editor.whitespace.render]
|
|
|
|
space = "all"
|
|
|
|
tab = "all"
|
|
|
|
|
2023-03-29 12:06:13 -04:00
|
|
|
[keys.normal]
|
|
|
|
"$" = "goto_line_end"
|
|
|
|
"^" = "goto_line_start"
|
2023-07-25 09:30:54 -04:00
|
|
|
EOF
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.config/helix/themes/mylight.toml"
|
2023-07-25 09:30:54 -04:00
|
|
|
inherits = "onelight"
|
|
|
|
|
|
|
|
"comment" = { fg = "grey" }
|
|
|
|
"comment.line" = { fg = "grey" }
|
|
|
|
"comment.block" = { fg = "grey" }
|
|
|
|
"comment.block.documentation" = { fg = "grey" }
|
2023-03-29 12:06:13 -04:00
|
|
|
EOF
|
2023-03-21 14:17:23 -04:00
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.gitconfig"
|
2023-03-21 14:17:23 -04:00
|
|
|
[push]
|
|
|
|
default = simple
|
|
|
|
|
|
|
|
[user]
|
|
|
|
name = Andrew Coleman
|
|
|
|
email = penguincoder@gmail.com
|
|
|
|
|
|
|
|
[advice]
|
|
|
|
detachedHead = false
|
|
|
|
|
|
|
|
[core]
|
|
|
|
filemode = true
|
|
|
|
eol = lf
|
|
|
|
autocrlf = input
|
|
|
|
pager = delta
|
|
|
|
|
|
|
|
[init]
|
|
|
|
defaultBranch = main
|
|
|
|
|
|
|
|
[delta]
|
2023-03-22 08:59:25 -04:00
|
|
|
line-numbers = true
|
|
|
|
#line-numbers-zero-style = white
|
|
|
|
line-numbers-minus-style = bold red
|
|
|
|
line-numbers-plus-style = bold green
|
|
|
|
file-style = omit
|
|
|
|
hunk-header-style = file
|
|
|
|
syntax-theme = OneHalfLight
|
2023-03-21 14:17:23 -04:00
|
|
|
|
|
|
|
[rebase]
|
|
|
|
autoStash = true
|
|
|
|
|
|
|
|
[merge]
|
|
|
|
tool = vimdiff
|
|
|
|
conflictstyle = diff3
|
|
|
|
prompt = false
|
|
|
|
|
|
|
|
[pull]
|
|
|
|
rebase = true
|
|
|
|
|
|
|
|
[color]
|
|
|
|
branch = auto
|
|
|
|
diff = auto
|
|
|
|
status = auto
|
|
|
|
ui = true
|
|
|
|
|
|
|
|
[color "branch"]
|
|
|
|
current = yellow reverse
|
|
|
|
local = yellow
|
|
|
|
remote = green
|
|
|
|
|
|
|
|
[color "diff"]
|
|
|
|
meta = yellow bold
|
|
|
|
frag = magenta bold
|
|
|
|
old = red bold
|
|
|
|
new = green bold
|
|
|
|
|
|
|
|
[color "status"]
|
|
|
|
added = yellow
|
|
|
|
changed = green
|
|
|
|
untracked = red
|
|
|
|
|
|
|
|
[alias]
|
|
|
|
logp = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
|
|
|
|
lg = log --graph --date-order --first-parent \
|
|
|
|
--pretty=format:'%C(auto)%h%Creset %C(auto)%d%Creset %s %C(green)(%ad) %C(bold cyan)<%an>%Creset'
|
|
|
|
lgb = log --graph --date-order --branches --first-parent \
|
|
|
|
--pretty=format:'%C(auto)%h%Creset %C(auto)%d%Creset %s %C(green)(%ad) %C(bold cyan)<%an>%Creset'
|
|
|
|
lga = log --graph --date-order --all \
|
|
|
|
--pretty=format:'%C(auto)%h%Creset %C(auto)%d%Creset %s %C(green)(%ad) %C(bold cyan)<%an>%Creset'
|
|
|
|
up = pull --rebase
|
|
|
|
branches-last-updated = branch -rv --sort=committerdate --format='%(HEAD) %(color:green)%(committerdate:relative)%(color:reset)\t%(color:magenta)%(authorname)%(color:reset)\t%(color:yellow)%(refname:short)%(color:reset)'
|
|
|
|
EOF
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
if [ ! -d "$HOME/.cargo" ]; then
|
2023-03-21 14:17:23 -04:00
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --no-modify-path --default-toolchain stable --profile complete -y
|
|
|
|
fi
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.tmux.conf"
|
2023-03-29 12:06:13 -04:00
|
|
|
set-option -g update-environment "SSH_AUTH_SOCK SSH_CONNECTION"
|
|
|
|
EOF
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
cat <<EOF >"$HOME/.vimrc"
|
2023-03-29 12:06:13 -04:00
|
|
|
" gratis https://swordandsignals.com/2020/12/13/5-lines-in-vimrc.html
|
|
|
|
set hlsearch " highlight all search results
|
|
|
|
set ignorecase " do case insensitive search
|
|
|
|
set incsearch " show incremental search results as you type
|
|
|
|
set number " display line number
|
|
|
|
set noswapfile " disable swap file
|
|
|
|
" can also be summarized as
|
|
|
|
set hls ic is nu noswf
|
|
|
|
" from https://www.guckes.net/vim/setup.html
|
|
|
|
set ai nocp ek hid ru sc vb wmnu noeb noet nosol
|
|
|
|
set bs=2 fo=cqrt ls=2 shm=at ww=<,>,h,l
|
|
|
|
set comments=b:#,:%,n:>
|
|
|
|
set list listchars=tab:>=,trail:-
|
|
|
|
set viminfo=%,'50,\"100,:100,n~/.viminfo
|
|
|
|
EOF
|
2023-03-22 14:37:02 -04:00
|
|
|
|
|
|
|
install -m 640 ./.zshrc "$HOME/"
|
|
|
|
|
|
|
|
AUTO_FILE="$HOME/.zshrc.auto"
|
2023-07-28 08:28:53 -04:00
|
|
|
{
|
|
|
|
atuin init zsh --disable-up-arrow
|
|
|
|
direnv hook zsh
|
|
|
|
starship init zsh --print-full-init
|
|
|
|
zoxide init zsh
|
|
|
|
} >"$AUTO_FILE"
|
2023-03-22 14:37:02 -04:00
|
|
|
|
|
|
|
[ -d /usr/local/bin ] || sudo mkdir /usr/local/bin
|
|
|
|
|
2023-07-28 08:28:53 -04:00
|
|
|
install_typst() {
|
2023-03-22 14:37:02 -04:00
|
|
|
echo "manually installing typst"
|
|
|
|
curl -sLO https://github.com/typst/typst/releases/download/22-03-21-2/typst-x86_64-apple-darwin.tar.gz
|
|
|
|
ouch d typst*.tar.gz
|
2023-07-28 08:28:53 -04:00
|
|
|
sudo install -m 755 typst*/typst /usr/local/bin/
|
2023-03-22 14:37:02 -04:00
|
|
|
rm -rf ./typst*
|
|
|
|
}
|
2023-07-28 08:28:53 -04:00
|
|
|
|
2023-03-22 14:37:02 -04:00
|
|
|
[ -e "/usr/local/bin/typst" ] || install_typst
|
2023-07-28 08:32:14 -04:00
|
|
|
|
|
|
|
shellcheck "$0" || exit 1
|
|
|
|
shfmt -i 2 -d -s "$0"
|