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
This commit is contained in:
qorg11 2020-07-22 06:29:54 +02:00
parent ba2db6dff6
commit 55bcf125ec
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -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))