dotfiles/home/run_once_01install-packages.sh.tmpl
Matthew Ryan Dillon 4db7bcac3b editor: setting up neovim again
been using helix for a few years now, but wanted to test the neovim
waters again. mostly just ripped off "neovim for newbs"
https://www.youtube.com/watch?v=zHTeCSVAFNY&list=PLsz00TDipIffreIaUNk64KxTIkQaGguqn
2025-02-16 15:17:09 -05:00

66 lines
1 KiB
Bash

#!/bin/sh
set -e
{{ if eq .hosttype "devterm" -}}
sudo apt install \
brightnessctl \
git \
libncurses-dev \
libssl-dev \
lynx \
ripgrep \
tree \
wget \
zsh \
-y
{{ else if eq .hosttype "personal" -}}
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
eval "$(/opt/homebrew/bin/brew shellenv)"
brew install \
bzip2 \
cmus \
curl \
direnv \
fzf \
git \
git-delta \
helix \
jj \
kitty \
neovim \
nvm \
ripgrep \
sqlite \
tree \
watch \
wget \
xz \
yazi \
zellij \
zk \
zlib \
zsh
export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh"
nvm install 22
nvm use 22
{{ else if eq .hosttype "wsl" -}}
sudo apt update
sudo apt install \
build-essential \
clang \
libssl-dev \
pkg-config \
ripgrep \
tree \
wget \
yazi \
-y
{{ else if eq .hosttype "work" -}}
{{ join .chezmoi.sourceDir "encrypted_work_packages.age" | include | decrypt -}}
{{ end }}