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)