From 55bcf125ecb205ff54fd1efe54d6af3cdaef8429 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Wed, 22 Jul 2020 06:29:54 +0200 Subject: [PATCH] New theme and not everyone wants to use weechat on their emacs installation. So if you want to use weechat. create the directory mentioned there with the contents of this repo: https://github.com/bqv/weechat.el/tree/rx-range which is a weechat-emacs that actually works --- config.org | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/config.org b/config.org index 1c58aa5..3d60047 100644 --- a/config.org +++ b/config.org @@ -231,10 +231,10 @@ Including indent-buffer, which should not be called automatically on save." ** theme Emacs theme, among other things. #+BEGIN_SRC emacs-lisp - (use-package modus-vivendi-theme + (use-package laguna-theme :ensure t :init - (load-theme 'modus-vivendi t)) + (load-theme 'laguna t)) (custom-set-faces @@ -399,8 +399,10 @@ Including indent-buffer, which should not be called automatically on save." ** Weechat erc sucks, irc sucks, weechat does not. (see [[https://github.com/bqv/weechat.el/tree/rx-range][this]]) #+BEGIN_SRC emacs-lisp - (add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/weechat/weechat-20190520.1551")) - (require 'weechat) + (setq directory "~/.emacs.d/elpa/weechat-20190520.1551/Makefile") + + (if (file-exists-p directory) + (add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/weechat/weechat-20190520.1551")(require 'weechat))) #+END_SRC ** Tree Emacs sidebar. soykafy but it works @@ -449,7 +451,6 @@ Including indent-buffer, which should not be called automatically on save." * Doom Emacs line Doom-modeline, because emacs default bar sucks #+BEGIN_SRC emacs-lisp - (use-package doom-modeline :ensure t :init(doom-modeline-mode 1))