summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-02-15 23:49:03 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-02-15 23:49:03 +0100
commitb34576318cb92c8ed736fca12e5099e464a0d295 (patch)
tree6ef4341a7865b2499cc6315dc386c3ef276030e5
parent1e1a20835bb7409c6b3e1a60304f4cdba4a06cd2 (diff)
Remove bootstrap script
-rwxr-xr-xbootstrap16
1 files changed, 0 insertions, 16 deletions
diff --git a/bootstrap b/bootstrap
deleted file mode 100755
index 279b2a7..0000000
--- a/bootstrap
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-datadir="$HOME/.local/share/nvim"
-pluginsdir="$datadir/lazy"
-
-clone() {
- user="$1"
- plugin="$2"
- plugindir="$pluginsdir/$plugin"
- [ ! -d "$plugindir" ] && git clone --filter=blob:none --single-branch "https://github.com/$user/$plugin.git" "$plugindir"
-}
-
-[ ! -d "$datadir" ] && echo "Neovim does not seem to be installed!" && exit 1
-clone "folke" "lazy.nvim"
-clone "rktjmp" "hotpot.nvim"
-exit 0