~edwargix/emacs.d

15832b387782b8f7a961949229a9066b6cdbab29 — David Florness 7 years ago 2883d9b
Separate appearance configuration
2 files changed, 30 insertions(+), 29 deletions(-)

M init.el
A lisp/appearance.el
M init.el => init.el +1 -29
@@ 1,32 1,4 @@
;;; Change frame title
(setq frame-title-format "emacs")

;;; Font
(set-frame-font
 (font-spec
  :name "Source Code Pro"
  :size 13
  :weight 'normal
  :width 'normal)
 nil t)

;;; Disable menu bar
(menu-bar-mode 0)

;;; Disable scroll bar
(scroll-bar-mode 0)

;;; Disable tool bar
(tool-bar-mode 0)

;;; Turn off cursor blinking
(blink-cursor-mode 0)

;;; Show column number next to line number in mode line
(column-number-mode)

;;; Highlight parentheses
(show-paren-mode)
(load-file "~/.emacs.d/lisp/appearance.el")

;;; Winner mode: allows for undoing and redoing of windoow configurations
;;; C-c <left> : undo

A lisp/appearance.el => lisp/appearance.el +29 -0
@@ 0,0 1,29 @@
;;; Change frame title
(setq frame-title-format "emacs")

;;; Font
(set-frame-font
 (font-spec
  :name "Source Code Pro"
  :size 13
  :weight 'normal
  :width 'normal)
 nil t)

;;; Disable menu bar
(menu-bar-mode 0)

;;; Disable scroll bar
(scroll-bar-mode 0)

;;; Disable tool bar
(tool-bar-mode 0)

;;; Turn off cursor blinking
(blink-cursor-mode 0)

;;; Show column number next to line number in mode line
(column-number-mode)

;;; Highlight parentheses
(show-paren-mode)