diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-02-15 23:49:03 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-02-15 23:49:03 +0100 |
commit | b34576318cb92c8ed736fca12e5099e464a0d295 (patch) | |
tree | 6ef4341a7865b2499cc6315dc386c3ef276030e5 /bootstrap | |
parent | 1e1a20835bb7409c6b3e1a60304f4cdba4a06cd2 (diff) |
Remove bootstrap script
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 |