8 lines
218 B
Bash
Executable file
8 lines
218 B
Bash
Executable file
#! /usr/bin/env sh
|
|
|
|
# Install Packer
|
|
PACKER_DIR="$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim"
|
|
if [ ! -d $PACKER_DIR ]; then
|
|
git clone --depth 1 https://github.com/wbthomason/packer.nvim $PACKER_DIR
|
|
fi
|