From 8aa2654e204c1a81439dff69ee04ebdb7a5eff20 Mon Sep 17 00:00:00 2001 From: Ward Truyen Date: Sun, 28 Dec 2025 19:24:08 +0100 Subject: [PATCH] change: removed makefile target instal-zsh-optionals, use the shell-config git repo instead --- README.md | 6 ++++++ makefile | 25 +++++++++++++++---------- 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d243443..b9eba8e 100644 --- a/README.md +++ b/README.md @@ -1 +1,7 @@ # NeoVim config repository from Ward Truyen 2025 + +Use the makefile to fully instal vim and it's config + +## changelog: + +- Change: removed makefile target instal-zsh-optionals, instead use the repo https://git.truyen.network/ward/shell-config diff --git a/makefile b/makefile index 6fa9ed5..a36f848 100644 --- a/makefile +++ b/makefile @@ -2,13 +2,16 @@ NVIM_CONFIG=~/.config/nvim/# default : print-help help : print-help +install : instal +fullinstal-arch : instal-optionals-archlinux instal +instal-opst-arch : instal-optionals-archlinux 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 instal-zsh-optionals' to instal additional interesting packages: zsh, easy-zsh-config, oh-my-posh" - @echo -e "Use 'make code' to get code from your config to this project" + @echo -e "Use 'make instal-optionals-archlinux' to instal additional interesting packages: nvim, neovide, wl-clipboard" + # @echo -e "Use 'make instal-zsh-optionals' to instal additional interesting packages: zsh, easy-zsh-config, oh-my-posh" + @echo -e "Use 'make getmycode' to get code from your config to this project" @echo -e "ConfigPath=$(NVIM_CONFIG)" instal : @@ -16,18 +19,20 @@ instal : cp ./*.lua $(NVIM_CONFIG) cp -r ./lua $(NVIM_CONFIG) -instal-optionals : - sudo pacman -S --needed vim nvim tree +instal-optionals-archlinux : + sudo pacman -S --needed vim nvim 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 + sudo pacman -S --needed tree git make -instal-zsh-optionals : - sudo pacman -S --needed zsh #zsh shell environment - yay -S --needed easy-zsh-config #zsh suggestion/command-completion and syntax higlighting - yay -S --needed oh-my-posh #zsh theme provider +# use the repo: https://git.truyen.network/ward/shell-config +# instal-zsh-optionals : +# sudo pacman -S --needed zsh #zsh shell environment +# yay -S --needed easy-zsh-config #zsh suggestion/command-completion and syntax higlighting +# yay -S --needed oh-my-posh #zsh theme provider -code : +getmycode : @echo -e "Getting code from $(NVIM_CONFIG)" cp $(NVIM_CONFIG)*.lua ./ cp -r $(NVIM_CONFIG)lua ./