diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-07-30T16·30+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-07-30T16·30+0200 |
commit | 6c2da17783ef0931e1d44dbd22c79f91668a4dc0 (patch) | |
tree | ec2dcd0261b970b39d1695e044b6354a80f8a44d /init/settings.el | |
parent | 2c02c371fe488f584c96fbf8720a8943746b837f (diff) |
refactor: Some minor cleanups
Diffstat (limited to 'init/settings.el')
-rw-r--r-- | init/settings.el | 40 |
1 files changed, 4 insertions, 36 deletions
diff --git a/init/settings.el b/init/settings.el index bc78d62be2d7..48c5a853e7b6 100644 --- a/init/settings.el +++ b/init/settings.el @@ -1,11 +1,11 @@ (require 'uniquify) -; (require 'smart-mode-line) ; ## Generic settings ## ; Hide those ugly tool bars (tool-bar-mode 0) (scroll-bar-mode 0) +(menu-bar-mode 0) (defun disable-scroll-bar () (scroll-bar-mode 0)) @@ -115,13 +115,8 @@ ;; ## Look and feel ## -;; 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") - +;; Themes! +;; I've pretty much settled on this Gruber darker theme (custom-download-theme "https://raw.github.com/rexim/gruber-darker-theme/master/gruber-darker-theme.el" "gruber-darker-theme.el") @@ -135,12 +130,6 @@ (set-default-font "Source Code Pro 12") -;; Don't make the nyan cat too long ... I have other stuff in the mode -;; bar as well! -(set-variable 'nyan-bar-length 15) -;; Not the real deal without this ... -(set-variable 'nyan-wavy-trail t) - ;; Style line numbers (shown with M-g g) (setq linum-format (lambda (line) @@ -153,30 +142,9 @@ line) 'face 'linum))) -;; ## Mac specific settings ## - -;; Enable mouse support on OS X -(unless window-system - (require 'mouse) - (xterm-mouse-mode t) - (global-set-key [mouse-4] '(lambda () - (interactive) - (scroll-down 1))) - (global-set-key [mouse-5] '(lambda () - (interactive) - (scroll-up 1))) - (defun track-mouse (e)) - - (setq mouse-sel-mode t) -) - ;; Use clipboard properly (setq x-select-enable-clipboard t) -;; Settings for Emacs.app (Cocoa Emacs) -;; Menu bar doesn't take up additional space, so lets use it. -(menu-bar-mode 1) - ;; Auto refresh buffers (global-auto-revert-mode 1) @@ -206,7 +174,7 @@ (define-key global-map [?] 'ace-jump-mode) -;; Quick jump back +;; Quick jump back (autoload 'ace-jump-mode-pop-mark "ace-jump-mode" |