diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-07-08T00·18+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-07-08T00·18+0200 |
commit | 4454fca696b12d19157a0ab6770c3348c0b9f119 (patch) | |
tree | 19286d6d1c73686e97b71cecaee5620968ca7aa7 | |
parent | 802f0f4213900ae78cd5eea63f40e46651f90cbd (diff) |
Emacs: Added another theme (Gruber Darker), added a toggle for
fullscreen mode (M-RET)
-rw-r--r-- | emacs.d/init-settings.el | 13 | ||||
-rw-r--r-- | emacs.d/init.el | 3 |
2 files changed, 10 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> diff --git a/emacs.d/init.el b/emacs.d/init.el index 971ff2b749a0..e27a15f84e25 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -50,5 +50,8 @@ ;; Seed RNG (random t) +;; Add a fullscreen toggle +(global-set-key (kbd "M-RET") 'toggle-frame-fullscreen) + ;; Start server for emacsclient (server-start) |