Mercurial > dotfiles
view .chezmoiscripts/run_onchange_after_15-install-ubuntu-packages.sh.tmpl @ 876:8589883596fd
fix: remove pathdirs option to avoid slow path completions
see: https://stackoverflow.com/questions/76746392/why-is-my-zsh-tab-completion-slow-on-commands-but-not-directories
> Perform a path search even on command names with slashes in them.
> Thus if ?/usr/local/bin? is in the user?s path, and he or she types ?X11/xinit?, the command ?/usr/local/bin/X11/xinit? will be executed (assuming it exists).
> Commands explicitly beginning with ?/?, ?./? or ?../? are not subject to the path search. This also applies to the ?.? and source builtins.
author | Zeger Van de Vannet <zeger@vandevan.net> |
---|---|
date | Thu, 25 Apr 2024 10:05:40 +0200 |
parents | b0924ed8b0e1 |
children | 62335df560d9 7f261a1edb80 |
line wrap: on
line source
{{ if eq .chezmoi.os "linux" -}} {{ if eq .chezmoi.osRelease.name "Ubuntu" -}} {{ $packages := list "build-essential" "libsqlite3-dev" "libreadline-dev" "libbz2-dev" "libncurses-dev" "zlib1g-dev" "libffi-dev" "libssl-dev" "software-properties-common" "fd-find" "ripgrep" "jq" "pass" "apt-file" "fonts-firacode" "kitty" "yodl" "libevent-core-2.1-7" "libevent-dev" "pipx" "bison" "flex" "libnotify4" -}} {{ $ppa := list "ppa:maveonair/helix-editor" "ppa:mozillateam/ppa" -}} {{ $extra_packages := list "helix" "firefox" -}} #!/usr/bin/env bash set -xe sudo apt install -y {{ $packages | join " "}} {{ range $ppa }} sudo add-apt-repository -y --no-update --ppa {{ . }} {{ end }} sudo mkdir -p /etc/apt/preferences.d/ sudo cp -v {{ .chezmoi.sourceDir }}/system/ubuntu/mozilla-firefox /etc/apt/preferences.d/mozilla-firefox sudo apt update sudo apt install -y {{ $extra_packages | join " " }} sudo update-alternatives --set x-terminal-emulator /usr/bin/kitty {{- end }} {{- end }}