From e2c6a96e1802b48be82b193ed99838213c1d1acd Mon Sep 17 00:00:00 2001 From: Ward Truyen Date: Sat, 11 Oct 2025 11:27:24 +0200 Subject: [PATCH] feat: improved make instal-optionals to include nvim vim tree and --needed instal arguement --- makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index eaeca50..d76adcc 100644 --- a/makefile +++ b/makefile @@ -6,6 +6,7 @@ help : print-help print-help : @echo -e "Help!?!?" @echo -e "Use 'make instal' to instal this config to your home config" + @echo -e "Use 'make instal-optionals' to instal additional interesting packages: nvim, neovide, wl-clipboard" @echo -e "Use 'make code' to get code from your config to this project" @echo -e "ConfigPath=$(NVIM_CONFIG)" @@ -15,9 +16,10 @@ instal : cp -r ./lua $(NVIM_CONFIG) instal-optionals : - sudo pacman -S wl-clipboard #Use clipboard in wayland - sudo pacman -S xsel #Use clipboard in X11 - sudo pacman -S neovide #Neovim in graphical enviorment + sudo pacman -S --needed vim nvim tree + sudo pacman -S --needed wl-clipboard #Use clipboard in wayland +# sudo pacman -S --needed xsel #Use clipboard in X11 + sudo pacman -S --needed neovide #Neovim in graphical enviorment code : @echo -e "Getting code from $(NVIM_CONFIG)"