diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-10-14T06·50+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-10-14T06·50+0200 |
commit | cbecd5031d57528c39b61e16f2aad850f40b49a1 (patch) | |
tree | ef073e5dfef369f2b4f72d9fce012becd2bd61ee /init-settings.el | |
parent | a4e7f10362c807e5494debc2810f490cb2350608 (diff) |
Add YaSnippet & enable Uniquify
- Added YaSnippet & clojure-snippets for it - Enabled uniquify buffer naming (oh so good) - various smaller things
Diffstat (limited to 'init-settings.el')
-rw-r--r-- | init-settings.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/init-settings.el b/init-settings.el index 4256ba1c0f2a..e691328e132d 100644 --- a/init-settings.el +++ b/init-settings.el @@ -1,3 +1,4 @@ +(require 'uniquify) ;; ## Generic settings ## (tool-bar-mode -1) @@ -7,6 +8,8 @@ (setq ido-use-faces nil) (setq gc-cons-threshold 20000000) +(setq uniquify-buffer-name-style 'forward) + ;;; Code: (add-to-list 'load-path "/usr/local/share/emacs/site-lisp/mu4e") |