Compare commits
No commits in common. "a3c339b8210f0911404672376ec17093ca94327b" and "758c53ae82c4b81cea98897d302feb5897ea80a4" have entirely different histories.
a3c339b821
...
758c53ae82
61
README.md
61
README.md
|
@ -116,6 +116,7 @@ systemctl enable --now --user ssh-agent.service
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt install -y \
|
sudo apt install -y \
|
||||||
|
bat \
|
||||||
build-essential \
|
build-essential \
|
||||||
curl \
|
curl \
|
||||||
cmake \
|
cmake \
|
||||||
|
@ -132,13 +133,13 @@ sudo apt install -y \
|
||||||
jq \
|
jq \
|
||||||
just \
|
just \
|
||||||
kitty-terminfo \
|
kitty-terminfo \
|
||||||
libmhash2 \
|
|
||||||
libssl-dev \
|
|
||||||
libvirt-daemon \
|
libvirt-daemon \
|
||||||
lzop \
|
lzop \
|
||||||
most \
|
most \
|
||||||
|
mhash \
|
||||||
mosh \
|
mosh \
|
||||||
mtr \
|
mtr \
|
||||||
|
neovim \
|
||||||
nmon \
|
nmon \
|
||||||
openssh-server \
|
openssh-server \
|
||||||
pgcli \
|
pgcli \
|
||||||
|
@ -155,37 +156,6 @@ sudo apt install -y \
|
||||||
zfs-dkms \
|
zfs-dkms \
|
||||||
zfsutils-linux
|
zfsutils-linux
|
||||||
systemctl enable --now sshd.service
|
systemctl enable --now sshd.service
|
||||||
systemctl enable zfs.target
|
|
||||||
systemctl enable zfs-import-cache
|
|
||||||
systemctl enable zfs-mount
|
|
||||||
systemctl enable zfs-import.target
|
|
||||||
curl -Lo /tmp/nvim-linux64.deb https://github.com/neovim/neovim/releases/download/v0.7.2/nvim-linux64.deb && doas apt install -y /tmp/nvim-linux64.deb && rm -f /tmp/nvim-linux64.deb
|
|
||||||
go install github.com/schollz/croc/v9@latest
|
|
||||||
cargo install \
|
|
||||||
atuin \
|
|
||||||
bat \
|
|
||||||
bottom \
|
|
||||||
broot \
|
|
||||||
choose \
|
|
||||||
difftastic \
|
|
||||||
du-dust \
|
|
||||||
exa \
|
|
||||||
fd-find \
|
|
||||||
flamegraph \
|
|
||||||
git-delta \
|
|
||||||
gitui \
|
|
||||||
grex \
|
|
||||||
hexyl \
|
|
||||||
htmlq \
|
|
||||||
sd \
|
|
||||||
starship \
|
|
||||||
tealdeer \
|
|
||||||
tokei \
|
|
||||||
watchexec-cli \
|
|
||||||
upterm \
|
|
||||||
xh \
|
|
||||||
xsv
|
|
||||||
curl -LO https://github.com/owenthereal/upterm/releases/download/v0.9.0/upterm_linux_amd64.tar.gz
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# Bitwarden
|
# Bitwarden
|
||||||
|
@ -242,6 +212,31 @@ cargo install \
|
||||||
xcp
|
xcp
|
||||||
cargo +nightly install --git https://github.com/martinvonz/jj.git
|
cargo +nightly install --git https://github.com/martinvonz/jj.git
|
||||||
cargo +nightly install --git https://github.com/getzola/zola.git
|
cargo +nightly install --git https://github.com/getzola/zola.git
|
||||||
|
# ubuntu
|
||||||
|
cargo install \
|
||||||
|
atuin \
|
||||||
|
bottom \
|
||||||
|
broot \
|
||||||
|
cargo-flamegraph \
|
||||||
|
choose \
|
||||||
|
croc \
|
||||||
|
difftastic \
|
||||||
|
du-dust \
|
||||||
|
exa
|
||||||
|
fd-find \
|
||||||
|
git-delta \
|
||||||
|
gitui \
|
||||||
|
grex \
|
||||||
|
hexyl \
|
||||||
|
htmlq \
|
||||||
|
sd \
|
||||||
|
starship \
|
||||||
|
tealdeer \
|
||||||
|
tokei \
|
||||||
|
watchexec \
|
||||||
|
upterm \
|
||||||
|
xh \
|
||||||
|
xsv
|
||||||
```
|
```
|
||||||
# Chezmoi
|
# Chezmoi
|
||||||
|
|
||||||
|
|
|
@ -15,13 +15,3 @@ if [ -d "$HOME/.config/bash" ]; then
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
unset rc
|
unset rc
|
||||||
|
|
||||||
if which direnv > /dev/null 2>&1 ; then
|
|
||||||
eval "$(direnv hook bash)"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if which zoxide > /dev/null 2>&1 ; then
|
|
||||||
eval "$(zoxide init bash)"
|
|
||||||
# shellcheck disable=SC2139
|
|
||||||
alias z="$(which zoxide)"
|
|
||||||
fi
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
if which direnv > /dev/null 2>&1 ; then
|
||||||
|
eval "$(direnv hook bash)"
|
||||||
|
fi
|
|
@ -0,0 +1,5 @@
|
||||||
|
if which zoxide > /dev/null 2>&1 ; then
|
||||||
|
eval "$(zoxide init bash)"
|
||||||
|
# shellcheck disable=SC2139
|
||||||
|
alias z="$(which zoxide)"
|
||||||
|
fi
|
Loading…
Reference in New Issue