Problem
I'm trying to move my config files from a .dotfiles folder, and link those files to the corresponding config path.
Example
In this example I'm trying
$ ln -s ~/.dotfiles/nvim/init.vim ~/.config/nvim/init.vim
And the program (nvim in this case), the config file doesn't take effect.
But when I copy the file instead of linking
$ cp ~/.dotfiles/nvim/init.vim ~/.config/nvim/init.vim
It does take effect.
Other example
When I do the same thing but with my .zshrc file
ln -s .dotfiles/zsh/.zshrc ~/.zshrc
It takes effect...
Question
How could I link my .dotfiles config files to the according path for config?
Thanks