diff options
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 16 |
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 |