Update README with symlink creation instructions for my-aliases.zsh

This commit is contained in:
Peter Wood
2025-03-20 15:22:54 -04:00
parent 242ffc5194
commit c32f86183b

View File

@@ -1,7 +1,10 @@
## Aliases ## Aliases
Create a symlink from the `ZSH_CUSTOM` folder to the `dotfiles/my-aliases.zsh` file. Create a symlink from the `ZSH_CUSTOM` folder to the `dotfiles/my-aliases.zsh` file.
```sh ```sh
ln -s ~/dotfiles/my-aliases.zsh ~/.oh-my-zsh/custom/aliases.zsh # Create new symlink
ln -s ~/dev/dotfiles/my-aliases.zsh ~/.oh-my-zsh/custom/aliases.zsh
# If the symlink already exists, use -f to force creation
ln -sf ~/dev/dotfiles/my-aliases.zsh ~/.oh-my-zsh/custom/aliases.zsh
``` ```