aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Herlédan <sylvain.herledan@hrafnagud.info>2017-06-04 15:19:11 +0200
committerSylvain Herlédan <sylvain.herledan@hrafnagud.info>2017-06-04 15:19:11 +0200
commitd4eacb4c57f47b346e30655149a0f2efe616111f (patch)
tree85a338c4f74b1d78914d69426acb41dfa4752031
parent711c63dc1b55de64f48d5d2e090e0c91aaa0b25b (diff)
downloaddotfiles-d4eacb4c57f47b346e30655149a0f2efe616111f.tar.gz
dotfiles-d4eacb4c57f47b346e30655149a0f2efe616111f.tar.bz2
dotfiles-d4eacb4c57f47b346e30655149a0f2efe616111f.zip
Fix issue with vim config location.
If the configuration is not in the runtime path, the custom colorscheme will not be available.
-rwxr-xr-xsetup.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh
index 301c735..602efb8 100755
--- a/setup.sh
+++ b/setup.sh
@@ -162,6 +162,9 @@ create_symlinks()
rm -rf "${install_dir}/.vim"
ln -sfT "${cfg_dir}/vim" "${install_dir}/.vim"
+ rm -rf "${install_dir}/.config/vim"
+ ln -sfT "${cfg_dir}/vim" "${install_dir}/.config/vim"
+
rm -rf "${install_dir}/.config/dunst"
ln -sfT "${cfg_dir}/dunst" "${install_dir}/.config/dunst"