aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-07-31 08:02:07 +0200
committerThomas Schmucker <ts@its1.de>2026-07-31 08:02:07 +0200
commit5e24a17123ab0db1040bb2ac6d53b8de56bb9b8c (patch)
treed7a8347ef41cfbe332316c66afc45b64dbf5b64a /bootstrap
parentdeff5105f3a6b44c6ac555d3538507188dbb0028 (diff)
downloaddotfiles-5e24a17123ab0db1040bb2ac6d53b8de56bb9b8c.tar.gz
dotfiles-5e24a17123ab0db1040bb2ac6d53b8de56bb9b8c.tar.bz2
dotfiles-5e24a17123ab0db1040bb2ac6d53b8de56bb9b8c.zip
bootstrap/neovim.sh: Installiere xclip unter FreeBSD
Für MacOS ist bereits `pbcopy` als Systemtool installiert. Daher ist hier kein Installationsschritt notwendig.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/neovim.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bootstrap/neovim.sh b/bootstrap/neovim.sh
index 14097cc..158de80 100755
--- a/bootstrap/neovim.sh
+++ b/bootstrap/neovim.sh
@@ -108,11 +108,14 @@ install_tools() {
108 108
109 case "$OS" in 109 case "$OS" in
110 Darwin) 110 Darwin)
111 # Ein Clipboard-Tool ist als `pbcopy` bereits als Systemtool unter Macos
112 # vorinstalliert.
111 install_pkg gmake make 113 install_pkg gmake make
112 install_pkg fd fd 114 install_pkg fd fd
113 install_pkg tree-sitter tree-sitter 115 install_pkg tree-sitter tree-sitter
114 ;; 116 ;;
115 FreeBSD) 117 FreeBSD)
118 install_pkg xclip xclip
116 install_pkg gmake gmake 119 install_pkg gmake gmake
117 install_pkg fd fd-find 120 install_pkg fd fd-find
118 install_pkg tree-sitter tree-sitter-cli 121 install_pkg tree-sitter tree-sitter-cli