From bf1d96e988c3791abb9484172427dcd7ba39eb18 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Tue, 9 Jun 2020 11:45:58 +0200 Subject: [PATCH] Fixed zencoding and highlight lines. --- config.org | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/config.org b/config.org index 23ace20..85651e5 100644 --- a/config.org +++ b/config.org @@ -3,7 +3,7 @@ #+OPTIONS: toc:nil * qorg's Emacs config - + This is my Emacs configuration. Hope you like it. ** Installation @@ -114,7 +114,10 @@ Including indent-buffer, which should not be called automatically on save." 1 0))) (add-hook 'after-make-frame-functions 'contextual-menubar) - (add-hook 'sgml-mode-hook 'zencoding-mode) + (use-package zencoding-mode + :ensure t + :init + (add-hook 'sgml-mode-hook 'zencoding-mode)) (setq-default dired-details-hidden-string "---- ") ;; (icomplete-mode 1) Deprecated, used ido-mode instead @@ -213,12 +216,13 @@ Including indent-buffer, which should not be called automatically on save." (add-hook 'after-init-hook #'global-flycheck-mode)) #+END_SRC ** theme + Emacs theme, among other things. #+BEGIN_SRC emacs-lisp (use-package humanoid-themes :ensure t :config (load-theme 'humanoid-dark t)) - (hl-line-mode) + (global-hl-line-mode) #+END_SRC ** erc @@ -303,4 +307,6 @@ Including indent-buffer, which should not be called automatically on save." "#080c0d") (set-face-foreground 'mode-line "#cad5d8")) - #+END_SRC + #+ + +