This is a brief and bare-bones guide to getting GHC 7.2 and the cabal-install
tool (the two basic things you'll need to do Haskell development) up and running
on a new Mac OS X 10.7 install.
The instructions given here worked for me, but YMMV.
| /* This stylesheet is designed to work with the grey theme for GMail | |
| - hides the top bar and Google+ notifications | |
| - simplifies buttons (remove border/background, add hover state back) | |
| - dim Rapportive until hovered | |
| This is only partially tested at this point and may cause some issues | |
| Please let me know if you find problems: <http://brettterpstra.com/contact/> | |
| Brett Terpstra 2013 <http://brettterpstra.com> /* | |
| -- | |
| -- open currently open URL in Safari in Chrome | |
| -- forked from https://gist.github.com/3151932 | |
| -- | |
| property theURL : "" | |
| tell application "Safari" | |
| set theURL to URL of current tab of window 1 | |
| end tell | |
| if appIsRunning("Google Chrome") then |
| (deftheme molokai | |
| "emacs24 port of molokai for vim") | |
| (custom-theme-set-faces | |
| 'molokai | |
| '(cursor ((t (:background "#f8f8f0")))) | |
| '(font-lock-builtin-face ((t (:foreground "#ae81ff")))) | |
| '(font-lock-function-name-face ((t (:foreground "#a6e22e")))) | |
| '(font-lock-type-face ((t (:foreground "#66d9ef")))) | |
| '(font-lock-warning-face ((t (:inherit error)))) |
| (deftheme ir_black | |
| "The last emacs24 theme you'll ever need.") | |
| (custom-theme-set-faces | |
| 'ir_black | |
| '(cursor ((t (:background "#ffa560")))) | |
| '(mode-line ((t (:background "#202020" :foreground "#9c9c9c" :box nil :slant italic :height 0.9)))) | |
| '(mode-line-inactive ((t (:background "#202020" :foreground "#4a4a4a" :box nil :slant normal)))) | |
| '(font-lock-builtin-face ((t (:foreground "#96cbfe")))) | |
| '(font-lock-regexp-grouping-construct ((t (:inherit bold :foreground "#e9c062")))) |
| ;;; tango-2-theme.el --- Tango 2 color theme for GNU Emacs 24 | |
| ;; Author: Nick Parker | |
| ;; Version: 1.0.0 | |
| ;; | |
| ;; Ported theme to Emacs 24 color theme Nick Parker <[email protected]> | |
| ;; original from Will Farrington <[email protected]> | |
| ;; | |
| ;; This program is free software; you can redistribute it and/or | |
| ;; modify it under the terms of the GNU General Public License as | |
| ;; published by the Free Software Foundation; either version 3 of |
| ;;; pastels-on-dark-theme.el --- Pastels on Dark theme for Emacs 24 | |
| ;; Author: Mats Persson | |
| ;; Maintainer: Shane Celis <shane (at) gnufoo (dot) org> | |
| ;; URL: http://gist.github.com/1906662 | |
| ;; Version: 0.3 | |
| ;; Keywords: theme, color | |
| ;;; Commentary: |
| --- ./ghc/ghc.wrapper.old 2011-10-25 08:57:34.000000000 -0500 | |
| +++ ./ghc/ghc.wrapper 2011-10-25 08:57:06.000000000 -0500 | |
| @@ -1 +1 @@ | |
| -exec "$executablename" -B"$topdir" -pgmc "$pgmgcc" -pgma "$pgmgcc" -pgml "$pgmgcc" -pgmP "$pgmgcc -E -undef -traditional" ${1+"$@"} | |
| +exec "$executablename" -B"$topdir" -pgmc "$pgmgcc" -pgma "$pgmgcc" -optl "-Wl,-read_only_relocs,suppress" -pgml "$pgmgcc" -pgmP "$pgmgcc -E -undef -traditional" ${1+"$@"} |
| (if (<= emacs-major-version 23) | |
| (load "~/.emacs23") | |
| (load "~/.emacs24.d/init.el")) |