aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rwxr-xr-xinstall9
1 files changed, 0 insertions, 9 deletions
diff --git a/install b/install
deleted file mode 100755
index 1eca5e0..0000000
--- a/install
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-readonly PLUG_FILE="${HOME}/.config/nvim/autoload/plug.vim"
-readonly PLUG_URL="https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
-
-# Install plug if it doesn't exist
-[[ ! -f "${PLUG_FILE}" ]] && curl -fLo "${PLUG_FILE}" --create-dirs "${PLUG_URL}" &> /dev/null
-# Install neovim plugins
-nvim -i NONE -c PlugInstall -c quitall > /dev/null 2>&1