From 859f93800adf69e174e45af55d6c90ae7c0c6921 Mon Sep 17 00:00:00 2001 From: Nathan Steel Date: Sun, 8 Aug 2021 10:39:53 +0100 Subject: [PATCH] Add neovim plugin manager to install scripts - Added to Debian, and WSL install scripts --- installs/debian/debian_desktop.sh | 4 ++++ installs/wsl/wsl.sh | 1 + 2 files changed, 5 insertions(+) diff --git a/installs/debian/debian_desktop.sh b/installs/debian/debian_desktop.sh index 3014d25..3b2feea 100755 --- a/installs/debian/debian_desktop.sh +++ b/installs/debian/debian_desktop.sh @@ -4,6 +4,10 @@ # Download and install debian_base? +# Better text editing IDE-esk +apt install neovim -y +sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' + # Additional filesystem utilities ## For mounting samba/cif drives, and MTP (mobile phones) apt install cifs-utils jmtpfs -y diff --git a/installs/wsl/wsl.sh b/installs/wsl/wsl.sh index b3c6061..8df1117 100755 --- a/installs/wsl/wsl.sh +++ b/installs/wsl/wsl.sh @@ -20,6 +20,7 @@ apt install tmux zsh -y ## Text Editors apt install vim neovim -y +sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' ## Git apt install git tig -y