From ad1b10ed81d6bec13aaddc2ad95b137da51f6c85 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Mon, 3 Feb 2020 22:01:16 -0600 Subject: [PATCH] Forgot to remove powerline smartline things --- custom.el | 90 ---------------------------------------------------- settings.org | 24 ++++++++------ 2 files changed, 14 insertions(+), 100 deletions(-) diff --git a/custom.el b/custom.el index 306759f..e0c85c1 100644 --- a/custom.el +++ b/custom.el @@ -158,96 +158,6 @@ '(safe-local-variable-values (quote ((project-venv)))) '(scroll-bar-mode nil) - '(sml/mode-width - (if (eq (powerline-current-separator) - (quote arrow)) - (quote right) - (quote full))) - '(sml/pos-id-separator - (quote - ("" - (:propertize " " - face - powerline-active1) - (:eval (propertize - " " - (quote display) - (funcall - (intern - (format - "powerline-%s-%s" - (powerline-current-separator) - (car powerline-default-separator-dir))) - (quote powerline-active1) - (quote powerline-active2)))) - (:propertize " " - face - powerline-active2)))) - '(sml/pos-minor-modes-separator - (quote - ("" - (:propertize " " - face - powerline-active1) - (:eval (propertize - " " - (quote display) - (funcall - (intern - (format - "powerline-%s-%s" - (powerline-current-separator) - (cdr powerline-default-separator-dir))) - (quote powerline-active1) - (quote sml/global)))) - (:propertize " " - face - sml/global)))) - '(sml/pre-id-separator - (quote - ("" - (:propertize " " - face - sml/global) - (:eval (propertize - " " - (quote display) - (funcall - (intern - (format - "powerline-%s-%s" - (powerline-current-separator) - (car powerline-default-separator-dir))) - (quote sml/global) - (quote powerline-active1)))) - (:propertize " " - face - powerline-active1)))) - '(sml/pre-minor-modes-separator - (quote - ("" - (:propertize " " - face - powerline-active2) - (:eval (propertize - " " - (quote display) - (funcall - (intern - (format - "powerline-%s-%s" - (powerline-current-separator) - (cdr powerline-default-separator-dir))) - (quote powerline-active2) - (quote powerline-active1)))) - (:propertize " " - face - powerline-active1)))) - '(sml/pre-modes-separator - (propertize - " " - (quote face) - (quote sml/modes))) '(sml/theme (quote atom-one-dark)) '(tool-bar-mode nil) diff --git a/settings.org b/settings.org index 23c31c8..fb9d8f8 100644 --- a/settings.org +++ b/settings.org @@ -689,7 +689,20 @@ put executables in elpy-rpc-venv in path ** Smart mode line #+BEGIN_SRC emacs-lisp (use-package smart-mode-line - :config (use-package winum + :init + (winum-mode 1) + :config + (sml/setup)) +#+END_SRC +** Theme +#+BEGIN_SRC emacs-lisp + (use-package dracula-theme + :config + (load-theme 'dracula t)) +#+END_SRC +** Winum-mode +#+BEGIN_SRC emacs-lisp +(use-package winum :bind (:map winum-keymap (("M-0" . winum-select-window-0-or-10) @@ -701,15 +714,6 @@ put executables in elpy-rpc-venv in path ("M-6" . winum-select-window-6) ("M-7" . winum-select-window-7) ("M-8" . winum-select-window-8)))) - (use-package winum - :config (winum-mode)) - (sml/setup)) -#+END_SRC -** Theme -#+BEGIN_SRC emacs-lisp - (use-package dracula-theme - :config - (load-theme 'dracula t)) #+END_SRC * Clipboard manager ** Browse kill ring settings