From 7bad4cc1c3af84c31446872d6d30d1870f0f292f Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 17 Jun 2019 23:00:12 +0200 Subject: Emacs: use correct customize function --- emacs/.emacs.d/main.el | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'emacs/.emacs.d/main.el') diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index fb6b9418..16f29f60 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -18,14 +18,13 @@ ;;; Styles -;; I prefer an always-visible cursor. Feels less distracting. -(customize-set-variable 'blink-cursor-mode nil) - -;; Disable all the bars, unless on OSX, in which case, keep the menu bar. - -(customize-set-variable 'menu-bar-mode nil) -(customize-set-variable 'scroll-bar-mode nil) -(customize-set-variable 'tool-bar-mode nil) +(custom-set-variables + ;; I prefer an always-visible cursor. Feels less distracting. + '(blink-cursor-mode nil) + ;; Disable all the bars, unless on OSX, in which case, keep the menu bar. + '(menu-bar-mode nil) + '(scroll-bar-mode nil) + '(tool-bar-mode nil)) (set-fringe-mode '(4 . 4)) ;; Ring the bell sometimes, but not so often -- cgit 1.4.1