diff options
Diffstat (limited to 'emacs.d/init-settings.el')
-rw-r--r-- | emacs.d/init-settings.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/emacs.d/init-settings.el b/emacs.d/init-settings.el index 042f35a48ca4..281abbd85a26 100644 --- a/emacs.d/init-settings.el +++ b/emacs.d/init-settings.el @@ -81,11 +81,16 @@ comment as a filename." ;; ## Look and feel ## -;; Theme! +;; Themes! I download and install the ones I like and default the one +;; I currently like most. This changes a lot because I hate +;; everything. (It's in my nature, don't judge) (custom-download-theme "https://raw.github.com/owainlewis/emacs-color-themes/master/themes/hickey-theme.el" "hickey-theme.el") -(load-theme 'hickey t) +(custom-download-theme "https://raw.github.com/rexim/gruber-darker-theme/master/gruber-darker-theme.el" + "gruber-darker-theme.el") + +(load-theme 'gruber-darker t) (global-hl-line-mode -1) @@ -131,10 +136,6 @@ comment as a filename." ;; Don't use Apple's native fullscreen (FIXME: Change with Mavericks) (setq ns-use-native-fullscreen nil) -;; ... and then enable fullscreen. (This requires a nightly build of -;; Emacs for OS X) -;;(toggle-frame-fullscreen) - ;; ## Navigation and key bindings ## ;; Navigate windows with M-<arrows> |