emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit c153742e7b65641b5f9addccc49fd1b8dbf7b4eb
parent 9b2c2e965892b9c9d5601b01c09db30b527abff9
Author: Cem Keylan <cem@ckyln.com>
Date:   Wed, 26 Feb 2020 16:38:53 +0300

move some settings to init.el

Diffstat:
Minit.el | 8++++++++
Mlisp.d/99-settings.el | 8+-------
2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/init.el b/init.el @@ -1,6 +1,14 @@ ;;; init.el ;;; Cem Keylan +;; Disable the clutter +(menu-bar-mode 0) +(tool-bar-mode 0) +(scroll-bar-mode 0) + +;; move custom-file +(setq custom-file "~/.emacs.d/lisp.d/01-custom.el") + ;; Line number binding (global-set-key (kbd "C-c r") 'linum-relative-mode) diff --git a/lisp.d/99-settings.el b/lisp.d/99-settings.el @@ -1,10 +1,4 @@ -;; Disable the clutter -(menu-bar-mode 0) -(tool-bar-mode 0) -(scroll-bar-mode 0) - -;; Remove custom-file -(setq custom-file "~/.emacs.d/lisp.d/01-custom.el") +;; settings.el ;; Backup options (setq backup-directory-alist `(("." . "~/.cache/emacs/saves")))