Wed, 25 Sep 2024 15:03:13 -0500
No LSP autostart when read-only
I think nvim actually threw out 'view' argc detection, I just use -R and alias
view to it.
#!/bin/bash set -euo pipefail source .lib/sh/util.sh [ -f .zshrc ] || die "Refusing to run without a .zshrc nearby" git --version >/dev/null || die "Please install git!" clone_or_pull 'https://github.com/tarjoilija/zgen.git' .zgen zsh -i -c 'zgen update' || : clone_or_pull 'https://github.com/asdf-vm/asdf' .asdf source .asdf/asdf.sh [ -d .asdf/plugins/perl ] || asdf plugin add perl asdf plugin update --all bin/setup-man || : # Get rid of older stuff for OLD in .plenv .rbenv .ndenv; do if [ -e $OLD ]; then warn "Pruning $OLD" rm -rf $OLD fi done