From d116eda691fb901ae45ed3c571b8c50741a05a8b Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Tue, 2 Feb 2021 10:59:27 -0700 Subject: Updating few things --- install | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 install (limited to 'install') diff --git a/install b/install new file mode 100755 index 0000000..1eca5e0 --- /dev/null +++ b/install @@ -0,0 +1,9 @@ +#!/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 -- cgit v1.2.3