rc

Add new symlink for auto creation

Author
Maarten Vangeneugden
Date
Oct. 8, 2017, 3:47 a.m.
Hash
205c90802eaea634d524f452d972c1ca574e9766
Parent
47fa8adc129bf7bd252485f4cf9d909eac89e7ce
Modified file
create-symlinks.sh

create-symlinks.sh

4 additions and 0 deletions.

View changes Hide changes
1
1
# directory and the locations where they are ought to be found.
2
2
# Run this file in the repository's directory, otherwise the files will not be
3
3
# found!
4
4
5
5
# In case it doesn't exist yet:
6
6
mkdir ~/.config
7
7
8
8
# i3
9
9
mkdir ~/.config/i3
10
10
ln -s i3/config ~/.config/i3/config
11
11
12
12
# Polybar
13
13
mkdir ~/.config/polybar
14
14
ln -s polybar/config ~/.config/polybar/config
15
15
16
16
# ZSH
17
17
ln -s .zshrc ~/.zshrc
18
18
ln -s .zlogin ~/.zlogin
19
19
20
20
# X11 and Urxvt
21
21
ln -s .Xdefaults ~/.Xdefaults
22
22
23
23
# GNU Emacs
24
24
ln -s .spacemacs ~/.spacemacs
25
25
+
26
# Neovim
+
27
mkdir ~/.config/nvim
+
28
ln -s .vimrc ~/.config/nvim/init.vim
+
29