Last active
June 30, 2016 03:45
-
-
Save malloc47/3b6bab523832fa9eff3f79635d86dc4c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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