Skip to content

Instantly share code, notes, and snippets.

@myyc
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save myyc/9779591 to your computer and use it in GitHub Desktop.

Select an option

Save myyc/9779591 to your computer and use it in GitHub Desktop.
(global-linum-mode t)
(setq prelude-guru nil)
(setq mac-option-modifier 'nil)
(setq mac-right-option-modifier 'nil)
(setq mac-right-command-modifier 'meta)
(define-key smartparens-mode-map (kbd "C-<left>") 'backward-word)
(define-key smartparens-mode-map (kbd "C-<right>") 'forward-word)
(global-set-key (kbd "C-<backspace>") 'backward-kill-word)
(global-set-key (kbd "C-c <backspace>") 'delete-indentation)
(add-hook 'haskell-mode-hook 'turn-on-haskell-decl-scan)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
(setq whitespace-style '(face tabs empty trailing))
(setq mac-allow-anti-aliasing nil)
(custom-set-faces '(default ((t (:family "Anonymous Pro")))))
(setq auto-mode-alist
(append
'(("\\.julius\\'" . javascript-mode)
("\\.lucius\\'" . css-mode))
auto-mode-alist))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment