X-Git-Url: https://code.delx.au/dotfiles/blobdiff_plain/5f756c69e0bdfc7bcf45dc790c94e27a4aaa4316..a21efa43c917f62d9ea1b15043aa64bf8b8d4ab4:/README.md diff --git a/README.md b/README.md index 802991a..675dc0f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This is a set of configuration files for a bunch of Unix apps I use regularly. ## Basic setup ``` -git clone http://delx.net.au/git/dotfiles .dotfiles +git clone https://delx.net.au/git/dotfiles .dotfiles ``` @@ -13,13 +13,13 @@ Make a backup of any existing files: ``` cd mkdir -p backup -mv .bash .bash_profile .bashrc .gitconfig .inputrc .pythonrc.py .screenrc .vim .vimrc backup/ +mv .bash .bash_profile .bashrc .gitconfig .inputrc .pythonrc.py .screenrc .vimrc backup/ ``` Symlink the config files into your home directory: ``` -ln -sf ~/.dotfiles/{.bash,.bash_profile,.bashrc,.gitconfig,.inputrc,.pythonrc.py,.screenrc,.vim,.vimrc} ~/ +ln -sf ~/.dotfiles/{.bash,.bash_profile,.bashrc,.gitconfig,.inputrc,.pythonrc.py,.screenrc,.vimrc} ~/ ln -sf ~/.dotfiles/.gitignore_global ~/.gitignore ln -sf ~/.dotfiles/.ssh/config ~/.ssh/ ``` @@ -35,15 +35,15 @@ ln -s ../git-hooks hooks ## Emacs setup -Symlink the emacs config: +Clone the dotemacs repository: ``` -ln -sf ~/.dotfiles/.emacs.d ~/ +git clone https://delx.net.au/git/dotemacs ~/.emacs.d ``` Initialise the emacs package submodules ``` -cd ~/.dotfiles +cd ~/.emacs.d git submodule init git submodule update ```