summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-07-01 16:07:36 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-07-01 16:07:36 +0100
commit97c1412d7d9986963e986f5dd5769f4cd62f7899 (patch)
tree0aad7baae7f29df3609ef0d0abff7ec3bb07b863
parent56e493f51881e57d93df2a71fe697bfc7f7e77ce (diff)
added fzf to script
Diffstat (limited to '')
-rwxr-xr-xprovision_openbsd.ksh4
1 files changed, 3 insertions, 1 deletions
diff --git a/provision_openbsd.ksh b/provision_openbsd.ksh
index 4098e8b..5d595cd 100755
--- a/provision_openbsd.ksh
+++ b/provision_openbsd.ksh
@@ -35,13 +35,14 @@ if [ "$?" != 0 ]; then
fi
-doas pkg_add the_silver_searcher zip
+doas pkg_add fzf the_silver_searcher zip
if [ $INC_CODE -eq 1 ]; then
ssh-add -v
print -n "Creating necessary directories..."
mkdir -p ~/code/python
mkdir -p ~/.config/
+ mkdir -p ~/.fzf/
print "ok"
print -n "Fetching dotfiles..."
@@ -80,6 +81,7 @@ if [ $INC_CODE -eq 1 ]; then
ln -sf openbsddotfiles/pdbrc .pdbrc
ln -sf openbsddotfiles/pdbrc.py .pdbrc.py
ln -sf openbsddotfiles/flake8 /home/lemon/.config/.flake8
+ ln -sf $(which fzf) ~/.fzf
print "ok"
fi