1.6 KiB
Since starting to use Circe I've also tried using the lui library on another project: emacs-slack. This has caused lui to be loaded without circe being loaded, so my lui customizations need to be loaded separately when lui is loaded, not when circe is loaded.
Enable lexical binding
;; -*- lexical-binding: t -*-
Require the needed libraries
In order to keep compiler warnings to a minimum, I require the libraries that are used in this configuration.
(require 'lui)
Change the time-stamp
I use only a small window to view the IRC channel I'm in usually, the default format put the time-stamp just a little too far to the right and would always cause either line truncation or filling to the next line. So I put the time-stamp in the right margin so it's always to the right of all messages and no messages can run under it, so essentially it has it's own column.
(setq lui-time-stamp-position 'right-margin)
(setq lui-time-stamp-format "%H:%M")
Give the right margin just enough room to show the time-stamps, no more, no less.
(defun oni:set-circe-margin-width ()
(setq right-margin-width 5))
(add-hook 'lui-mode-hook #'oni:set-circe-margin-width)
Provide the right feature
In order to be able to use (require 'lui-init)
we must first
provide
it.
(provide 'lui-init)