summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-04-30 23:42:26 -0500
committerZachIR <zachir@librem.one>2025-04-30 23:42:26 -0500
commit4a401026461cbf4249925d373d961eb042011ed8 (patch)
tree21fdfabd233416125789921c8569229d41236d12
parent7306fc24e1b944d5bd2c6f3f10b8606937103e9d (diff)
Using lazy nvim not vimplug
-rw-r--r--Makefile10
-rwxr-xr-xinstallers/vimplug_nvim.sh4
2 files changed, 0 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 898fe9e..d850e2a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,4 @@
VIM := $(shell command -v vim 2>/dev/null)
-NVIM := $(shell command -v nvim 2>/dev/null)
ZCONFS := zsh/zshenv zsh/zshrc
SCONFS := sh/profile
DCONFS := doas.conf
@@ -30,15 +29,6 @@ else
@echo "vim not installed."
endif
-vimplug-nvim: installers/vimplug_nvim.sh
-ifdef NVIM
- @echo "Installing vim-plug for nvim..."
- @$(shell installers/vimplug_nvim.sh)
- @echo "Done."
-else
- @echo "nvim not installed."
-endif
-
doas-conf: $(DCONFS)
@echo "Installing doas config files..."
@echo "doas.conf..."
diff --git a/installers/vimplug_nvim.sh b/installers/vimplug_nvim.sh
deleted file mode 100755
index feddd03..0000000
--- a/installers/vimplug_nvim.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-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