diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-08-05T13·17+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-08-05T13·17+0200 |
commit | e320f142636c5db25f0f3a786ce6c2ea41c36c06 (patch) | |
tree | 43afbf0790ca60a27486111130b3f82494a2dd60 /init-modes.el | |
parent | 46b80c00fd8a260e130e4f785b3f46c49487c9db (diff) |
* removed dotfiles stuff, this is emacs.d only
Diffstat (limited to 'init-modes.el')
-rw-r--r-- | init-modes.el | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/init-modes.el b/init-modes.el new file mode 100644 index 000000000000..3e9cff999654 --- /dev/null +++ b/init-modes.el @@ -0,0 +1,51 @@ +(mapc 'require '(projectile hi2)) +;; Initializes modes I use. + +(add-hook 'prog-mode-hook 'esk-pretty-lambdas) +(add-hook 'prog-mode-hook 'esk-add-watchwords) +(add-hook 'prog-mode-hook 'idle-highlight-mode) + +;; Configure markdown-mode +(autoload 'markdown-mode "markdown-mode" + "Major mode for editing Markdown files" t) +(add-to-list 'auto-mode-alist '("\\.txt\\'" . markdown-mode)) +(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode)) +(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)) + +;; Add keybindings to move nested blocks with C-, rsp. C-. +(define-key haskell-mode-map (kbd "C-,") 'haskell-move-nested-left) +(define-key haskell-mode-map (kbd "C-.") 'haskell-move-nested-right) + +;; Configure nrepl (Clojure REPL) and clojure-mode +;; Paredit in clojure + +(add-hook 'clojure-mode-hook 'paredit-mode) + +;; eldoc in clojure +(add-hook 'nrepl-interaction-mode-hook + 'nrepl-turn-on-eldoc-mode) + +;; Don't annoy me +(setq nrepl-hide-special-buffers t) +(setq nrepl-popup-stacktraces nil) + +;; Enable projectile for all things programming +(add-hook 'prog-mode-hook 'projectile-on) + +;; Enable rainbow-delimiters for all things programming +(add-hook 'prog-mode-hook 'rainbow-delimiters-mode) + +;; Enable Paredit in Emacs Lisp mode +(add-hook 'emacs-lisp-mode-hook 'paredit-mode) + +;; Always highlight matching brackets +(show-paren-mode 1) + +;; Undo-Tree at all times! +(undo-tree-mode) + +;; Keep track of recent files +(recentf-mode) + +;; Enable Nyan mode +(nyan-mode 1) |