From 2666a2d597f5fb4222142a5ce147546cf588887a Mon Sep 17 00:00:00 2001 From: ZachIR Date: Wed, 26 Jul 2023 10:34:54 -0500 Subject: Use shell agnostic profile and zshrc --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dcc13b8..dedeb57 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ VIM := $(shell command -v vim 2>/dev/null) NVIM := $(shell command -v nvim 2>/dev/null) ZCONFS := zsh/.zshenv +SCONFS := sh/profile all: -install: install-zshconfigs vimplug-vim vimplug-nvim +install: install-zshconfigs install-shconfigs vimplug-vim vimplug-nvim install-zshconfigs: $(ZCONFS) @echo "Installing zsh conf files..." @@ -12,6 +13,12 @@ install-zshconfigs: $(ZCONFS) @ln -sf `pwd`/zsh/.zshenv ~/.zshenv @echo "Done." +install-shconfigs: $(SCONFS) + @echo "Installing sh conf files..." + @echo ".profile..." + @ln -sf `pwd`/sh/profile ~/.profile + @echo "Done." + vimplug-vim: installers/vimplug_vim.sh ifdef VIM @echo "Installing vim-plug for vim..." -- cgit v1.2.3