diff options
author | ZachIR <zachir@zdx-raina> | 2023-07-26 10:34:54 -0500 |
---|---|---|
committer | ZachIR <zachir@zdx-raina> | 2023-07-26 10:34:54 -0500 |
commit | 2666a2d597f5fb4222142a5ce147546cf588887a (patch) | |
tree | 6c1daf998a3d5e9efc9e3dfa3f38a001c98447b3 /Makefile | |
parent | c2fd18073aa3dce8d34a39f24634c39d3fcf0681 (diff) |
Use shell agnostic profile and zshrcrai-master
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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..." |