Files
shell-config/README.md
2026-05-11 14:52:42 +02:00

41 lines
526 B
Markdown

# Shell config from Ward Truyen 2026
Use the makefile for a fast install
## How to
### Use the BASH config
Copy the `.bash*` files from here to your home folder `~/`
```bash
cp ./.bashrc ~/
cp ./.bash_profile ~/
cp ./.bash_config ~/
```
or
```make
make instal-bash-config
```
### Use the ZSH config
- Install the zsh package (pacman)
- Copy the `.zsh*` files from here to your home folder `~/`
```bash
sudo pacman -S --needed zsh
cp ./.zshrc ~/
```
or
```make
make instal-packages
make instal-zsh-config
```