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 | 706ee210f27f0b9b6e3a0a4b9e1afb1c6efa495c (patch) | |
| tree | 510b121df55faf7601e8476a3916cc452c5b6abc | |
| parent | b426d2e654e987961e285ea91b7645f50deac640 (diff) | |
| download | dotfiles-706ee210f27f0b9b6e3a0a4b9e1afb1c6efa495c.tar dotfiles-706ee210f27f0b9b6e3a0a4b9e1afb1c6efa495c.tar.zst dotfiles-706ee210f27f0b9b6e3a0a4b9e1afb1c6efa495c.zip | |
Make symbolic links relative
This allows to move the home folder withouth further needed actions.
| -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 |
