diff options
author | xengineering <me@xengineering.eu> | 2023-02-19 16:50:55 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-19 16:50:55 +0100 |
commit | 0eb9175a8385f297cd942bc68fc5f41ec032d766 (patch) | |
tree | 510b121df55faf7601e8476a3916cc452c5b6abc /README.md | |
parent | ea3e35e9384ebdb4454ad098bf158272621cca5f (diff) | |
download | dotfiles-0eb9175a8385f297cd942bc68fc5f41ec032d766.tar dotfiles-0eb9175a8385f297cd942bc68fc5f41ec032d766.tar.zst dotfiles-0eb9175a8385f297cd942bc68fc5f41ec032d766.zip |
Make symbolic links relative
This allows to move the home folder withouth further needed actions.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -54,10 +54,11 @@ Finally you should link some configuration files from programs which expect their config file in `~` instead of `~/.config`: ```bash - ln -s ~/.config/.bash_profile ~/.bash_profile - ln -s ~/.config/.bashrc ~/.bashrc - ln -s ~/.config/.vimrc ~/.vimrc - ln -s ~/.config/.zshrc ~/.zshrc + cd ~ + ln -s .config/.bash_profile .bash_profile + ln -s .config/.bashrc .bashrc + ln -s .config/.vimrc .vimrc + ln -s .config/.zshrc .zshrc ``` ## Update |