This file contains hidden or 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
## Add the following to ~/.profile | |
# Control is mapped to Alt keys, Alt is mapped to Win key | |
setxkbmap -option altwin:ctrl_alt_win | |
# Disable Caps Lock | |
setxkbmap -option ctrl:nocaps |
This file contains hidden or 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
set smoothscroll | |
set sortlinkhints | |
map s openSearchBar | |
map ) nextMatchPattern | |
map ( previousMatchPattern |
This file contains hidden or 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 -y zsh | |
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh | |
chsh -s `which zsh` | |
git clone git://github.com/sigurdga/gnome-terminal-colors-solarized.git ~/.solarized | |
cd ~/.solarized | |
./install.sh | |
# Note: Type `YES` to all `YES to continue` prompts. | |
wget https://raw.githubusercontent.com/seebi/dircolors-solarized/master/dircolors.ansi-dark | |
echo 'eval `dircolors ~/.solarized/dircolors.ansi-dark`' >> ~/.zshrc |
This file contains hidden or 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
module ElmHtmlTemplate where | |
import Window | |
import Graphics.Input (..) | |
import Graphics.Input as Input | |
import Html | |
import Html (..) | |
import Html.Events (..) | |
-------------------------------------------------------------------------------- |