]> code.delx.au - dotfiles/blobdiff - README.md
screen prompt change
[dotfiles] / README.md
index 4537283ba65f14828f45ac30395a5af7b5656f97..675dc0fd8a4768f182bae29d4b64600b7bd5bddc 100644 (file)
--- 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
 ```
@@ -117,3 +117,10 @@ Send DNS through SOCKS proxy:
 ```
 network.proxy.socks_remote_dns = true
 ```
+
+Enabling xinput2 gives pixel scrolling and fixes [bug #1276449](https://bugzilla.mozilla.org/show_bug.cgi?id=1276449).
+```
+# bash
+# ~/.xprofile
+export MOZ_USE_XINPUT2=1
+```