Skip to content

Instantly share code, notes, and snippets.

@malloc47
Last active June 30, 2016 03:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malloc47/3b6bab523832fa9eff3f79635d86dc4c to your computer and use it in GitHub Desktop.
Save malloc47/3b6bab523832fa9eff3f79635d86dc4c to your computer and use it in GitHub Desktop.
sudo apt-get install emacs
# caps -> ctrl
setxkbmap -layout us -option ctrl:nocaps
# or
sudo apt-get install gnome-tweak-tool
gnome-tweak-tool
# disable super key
xmodmap -e 'keycode 133 = NoSymbol'
xmodmap -e 'keycode 134 = NoSymbol'
# change setting
wget https://github.com/malloc47/config/archive/emacs243.zip
unzip emacs243.zip
cp -r config-emacs243/.emacs.d/ .
# leiningen
sudo apt-get install openjdk-7-jre
mkdir bin
cd bin/
wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
chmod +x lein
cd ../
echo 'export PATH=$PATH:~/bin' >> .bashrc
# might need elisp
(add-to-list 'exec-path "/home/<user>/bin")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment