-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
47 lines (32 loc) · 1.3 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Setup
=====
$HOME/etc/ contains files like 'bashrc' and directories like 'vim'
$HOME/.* are symlinks to files in $HOME/etc
The idea is that $HOME/etc is tracked by a revision control system like
git.
Running
=======
Getting help:
# etc/dot-files help
dot-files - manages symlink files from ~/etc/* to ~/.*
Syntax: dot-files [ <command> ] [ <options> ]
Commands:
list - list all etc files
status - status of available files
install [-v] [-f] - installs symlinks
Checking on the status:
# etc/dot-files status
zshrc OK
bashrc .
vimrc file
'OK' means that there is a $HOME/.zshrc symlink to etc/zshrc. 'file'
means that there is a $HOME/.zshrc file, but we could convert it into a
symlink. A dot means that the $HOME/.bashrc is not populated.
You can install new symlinks:
# etc/dot-files install
installing .zshrc ... skipped, OK
installing .bashrc
installing .vimrc
ln: creating symbolic link `/home/bart/.vimrc': File exists
The above skipped .zshrc, installed a symlink for .bashrc, stopped at
vimrc because there was a conflict.