feat: update 2026
This commit is contained in:
18
makefile
18
makefile
@@ -1,8 +1,15 @@
|
||||
|
||||
.PHONY: default help print-help
|
||||
.PHONY: instal-bash-config instal-zsh-config instal-bash instal-zsh instal-all
|
||||
.PHONY: getmycode code-bash code-zsh
|
||||
|
||||
default : print-help
|
||||
help : print-help
|
||||
instal : instal-packages, instal-config
|
||||
instal-config : instal-bash-config, instal-zsh-config
|
||||
install: instal
|
||||
instal : instal-all
|
||||
instal-bash: instal-bash-config
|
||||
instal-zsh: instal-zsh-packages, instal-zsh-config
|
||||
instal-all : instal-bash, instal-zsh
|
||||
getmycode : code-bash, code-zsh
|
||||
|
||||
print-help :
|
||||
@@ -15,18 +22,21 @@ print-help :
|
||||
instal-bash-config :
|
||||
@echo -e "Installing bash config to $$HOME"
|
||||
cp ./.bashrc ~/
|
||||
cp ./.bash_profile ~/
|
||||
cp ./.bash_config ~/
|
||||
|
||||
instal-zsh-config :
|
||||
@echo -e "Installing zsh config to $$HOME"
|
||||
cp ./.zshrc ~/
|
||||
|
||||
instal-packages :
|
||||
instal-zsh-packages :
|
||||
sudo pacman -S --needed zsh #zsh shell environment
|
||||
# yay -S --needed easy-zsh-config #zsh suggestion/command-completion and syntax higlighting
|
||||
|
||||
code-bash :
|
||||
@echo -e "Getting bash config from $$HOME"
|
||||
cp ~/.bashrc ./
|
||||
cp ~/.bash_profile ./
|
||||
cp ~/.bash_config ./
|
||||
|
||||
code-zsh :
|
||||
@echo -e "Getting zsh config from $$HOME"
|
||||
|
||||
Reference in New Issue
Block a user