Fixed zencoding and highlight lines.

This commit is contained in:
qorg11 2020-06-09 11:45:58 +02:00
parent 82b5995265
commit bf1d96e988
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -3,7 +3,7 @@
#+OPTIONS: toc:nil #+OPTIONS: toc:nil
* qorg's Emacs config * qorg's Emacs config
This is my Emacs configuration. Hope you like it. This is my Emacs configuration. Hope you like it.
** Installation ** Installation
@ -114,7 +114,10 @@ Including indent-buffer, which should not be called automatically on save."
1 0))) 1 0)))
(add-hook 'after-make-frame-functions 'contextual-menubar) (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 "---- ") (setq-default dired-details-hidden-string "---- ")
;; (icomplete-mode 1) Deprecated, used ido-mode instead ;; (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)) (add-hook 'after-init-hook #'global-flycheck-mode))
#+END_SRC #+END_SRC
** theme ** theme
Emacs theme, among other things.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package humanoid-themes (use-package humanoid-themes
:ensure t :ensure t
:config :config
(load-theme 'humanoid-dark t)) (load-theme 'humanoid-dark t))
(hl-line-mode) (global-hl-line-mode)
#+END_SRC #+END_SRC
** erc ** erc
@ -303,4 +307,6 @@ Including indent-buffer, which should not be called automatically on save."
"#080c0d") "#080c0d")
(set-face-foreground 'mode-line (set-face-foreground 'mode-line
"#cad5d8")) "#cad5d8"))
#+END_SRC #+