doom-emacs-config/config.el

660 lines
21 KiB
EmacsLisp
Raw Normal View History

2023-08-02 23:38:31 +02:00
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
;;;; Misc settings
2023-08-28 07:35:48 +02:00
;; start Emacs as a server process
(server-start)
;; user info
2023-08-02 23:38:31 +02:00
(setq user-full-name "Jeffrey Serio"
user-mail-address "hyperreal@fedoraproject.org")
2023-08-20 22:45:21 +02:00
(setq doom-user-dir "~/sync/doom/")
(after! projectile
(setq projectile-project-root-files-bottom-up
(remove ".git" projectile-project-root-files-bottom-up)))
2023-08-11 04:44:56 +02:00
;; This sets the frame dimensions and position on the screen when on moonshadow host.
;; Also sets the font size for moonshadow host.
2023-08-02 23:38:31 +02:00
(when (string= (system-name) "moonshadow")
2023-08-10 03:02:01 +02:00
(setq fontsize 18)
(setq default-frame-alist
2023-08-28 07:35:48 +02:00
'((height . 54)
2023-08-10 03:02:01 +02:00
(width . 154)
(left . 1720)
(top . 0)
(vertical-scroll-bars . nil)
(horizontal-scroll-bars . nil))))
2023-08-11 04:44:56 +02:00
;; This sets the frame to be full screen maximized on evergloam host.
;; Also sets the font size for evergloam host.
2023-08-02 23:38:31 +02:00
(when (string= (system-name) "evergloam")
2023-08-10 03:02:01 +02:00
(setq fontsize 18)
(add-to-list 'default-frame-alist '(fullscreen . maximized)))
2023-08-11 04:44:56 +02:00
;; Set fonts
(setq monofontfam "JetBrainsMono Nerd Font Mono")
(setq doom-font (font-spec :family monofontfam :size fontsize)
2023-08-10 03:02:01 +02:00
doom-variable-pitch-font (font-spec :family "Rubik")
2023-08-11 04:44:56 +02:00
doom-unicode-font (font-spec :family monofontfam :size fontsize)
doom-big-font (font-spec :family monofontfam :size fontsize))
2023-08-02 23:38:31 +02:00
;; Use catppuccin-mocha theme
(setq doom-theme 'catppuccin)
(setq catppuccin-flavor 'mocha)
2023-08-28 07:35:48 +02:00
;; Backups
(setq backup-directory-alist '(("." . "~/sync/emacs/backups")))
(with-eval-after-load 'tramp
(add-to-list 'tramp-backup-directory-alist
(cons tramp-file-name-regexp nil)))
(setq delete-old-versions -1)
(setq version-control t)
(setq vc-make-backup-files t)
(setq auto-save-file-name-transforms '((".*" "~/sync/emacs/auto-save-list/" t)))
;; History
(setq savehist-file "~/sync/emacs/savehist")
(savehist-mode 1)
(setq history-length t)
(setq history-delete-duplicates t)
(setq savehist-save-minibuffer-history 1)
(setq savehist-additional-variables
'(kill-ring
search-ring
regexp-search-ring))
;; Display time in the modeline
(display-time-mode 1)
;; Sentences end with a single space because it's right and proper
(setq sentence-end-double-space nil)
2023-08-02 23:38:31 +02:00
;; This determines the style of line numbers in effect. If set to `nil', line
;; numbers are disabled. For relative line numbers, set this to `relative'.
(setq display-line-numbers-type 'relative)
;; Make vterm open in another window
(setq vterm-other-window 1)
;; Keybinding to kill-whole-line
(global-set-key (kbd "M-9") 'kill-whole-line)
2023-08-28 07:35:48 +02:00
;; trim newline from string output
(defun string-trim-final-newline (string)
"Trim the last newline character from string.
Used with `shell-command-to-string'.
Source: https://emacs.stackexchange.com/a/21906"
(let ((len (length string)))
(cond
((and (> len 0) (eql (aref string (- len 1)) ?\n))
(substring string 0 (- len 1)))
(t string))))
;; wrapper around `shell-command-to-string' to remove newline
(defun shell-command-output-string (command)
(string-trim-final-newline (shell-command-to-string command)))
2023-08-02 23:38:31 +02:00
;; Copy all or text selection
(defun xah-copy-all-or-region ()
2023-10-14 00:26:17 +02:00
"Put the whole buffer content to `kill-ring', or text selection if there's one.
2023-08-02 23:38:31 +02:00
Respects `narrow-to-region'.
URL `https://ergomacs.org/emacs/emacs_copy_cut_all_or_region.html'
Version 2015-08-22"
2023-10-14 00:26:17 +02:00
(interactive)
(if (use-region-p)
(progn
(kill-new (buffer-substring (region-beginning) (region-end)))
(message "Text selection copied."))
(progn
(kill-new (buffer-string))
(message "Buffer content copied."))))
2023-08-02 23:38:31 +02:00
;; Cut all or text selection
(defun xah-cut-all-or-region ()
2023-10-14 00:26:17 +02:00
"Cut the whole buffer content to `kill-ring', or text selection if there's one.
2023-08-02 23:38:31 +02:00
Respects `narrow-to-region'.
URL `https://ergomacs.org/emacs/emacs_copy_cut_all_or_region.html'
Version 2015-08-22"
2023-10-14 00:26:17 +02:00
(interactive)
(if (use-region-p)
(progn
(kill-new (buffer-substring (region-beginning) (region-end)))
(delete-region (region-beginning) (region-end)))
(progn
(kill-new (buffer-string))
(delete-region (point-min) (point-max)))))
;; open URL in Firefox/LibreWolf
(defun browse-host-web (url &rest ignored)
"Browse URL with Firefox/LibreWolf"
(interactive "sURL: ")
(shell-command (concat "librewolf " url)))
(setq browse-url-browser-function 'browse-host-web)
2023-08-02 23:38:31 +02:00
;; after copy Ctrl+c in Linux X11, you can paste by `yank' in emacs
(setq select-enable-clipboard t)
;; after mouse selection copy in X11, you can paste by `yank' in emacs
(setq select-enable-primary t)
;; set keybinding for paste
(global-set-key (kbd "C-S-V") #'clipboard-yank)
;; Smart home key
(defun smart-beginning-of-line ()
2023-10-14 00:26:17 +02:00
"Move point to first non-whitespace character or beginning-of-line.
2023-08-02 23:38:31 +02:00
Move point to the first non-whitespace character on this line.
If point was already at that position, move point to beginning of line."
2023-10-14 00:26:17 +02:00
(interactive "^")
(let ((oldpos (point)))
(back-to-indentation)
(and (= oldpos (point))
(beginning-of-line))))
2023-08-02 23:38:31 +02:00
(global-set-key (kbd "<home>") 'smart-beginning-of-line)
(global-set-key (kbd "<end>") 'end-of-line)
;; Autoformat on save
(setq +format-on-save-enabled-modes
2023-10-14 00:26:17 +02:00
'(emacs-lisp-mode
python-mode))
2023-08-02 23:38:31 +02:00
2023-08-28 07:35:48 +02:00
;; UTF-8
(prefer-coding-system 'utf-8)
(when (display-graphic-p)
(setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING)))
;;;; artbollocks-mode
;;;; https://github.com/sachac/artbollocks-mode
(setq artbollocks-weasel-words-regex
(concat "\\b" (regexp-opt
'("one of the"
"should"
"just"
"etc"
"sort of"
"kind of"
"a lot"
"probably"
"maybe"
"perhaps"
"I think"
"really"
"pretty"
"utilize"
"leverage") t) "\\b"))
;;;; undo-tree-mode - visualize undos and branches
(global-undo-tree-mode)
(setq undo-tree-visualizer-timestamps t)
(setq undo-tree-visualizer-diff t)
(setq undo-tree-history-directory-alist '(("." . "~/sync/emacs/backups/undo-tree")))
2023-08-02 23:38:31 +02:00
2023-08-10 03:02:01 +02:00
;;;; evil-nerd-commenter
2023-08-02 23:38:31 +02:00
(global-set-key (kbd "M-;") 'evilnc-comment-or-uncomment-lines)
(global-set-key (kbd "C-c l") 'evilnc-quick-comment-or-uncomment-to-the-line)
(global-set-key (kbd "C-c c") 'evilnc-copy-and-comment-lines)
(global-set-key (kbd "C-c p") 'evilnc-comment-or-uncomment-paragraphs)
2023-08-10 03:02:01 +02:00
;;;; org-mode
2023-08-11 04:44:56 +02:00
(add-hook 'org-mode-hook (lambda () (org-superstar-mode 1)))
2023-08-28 07:35:48 +02:00
(require 'org-protocol)
2023-08-02 23:38:31 +02:00
2023-08-11 04:44:56 +02:00
(setq org-modules '(org-agenda
2023-08-02 23:38:31 +02:00
org-annotate-file
2023-08-11 04:44:56 +02:00
org-choose
2023-08-02 23:38:31 +02:00
org-collector
))
(eval-after-load 'org
'(org-load-modules-maybe t))
(setq org-directory "~/sync/org/")
2023-08-28 07:35:48 +02:00
(setq org-default-notes-file "~/sync/org/inbox.org")
2023-09-15 23:00:22 +02:00
(setq org-agenda-files '("~/sync/org/inbox.org"))
2023-08-02 23:38:31 +02:00
;; support selecting lines by using shift
(setq org-support-shift-select t)
;; org-mode tags
2023-09-03 11:05:53 +02:00
(setq org-tag-alist (quote (("@archiving" .?a)
2023-10-14 00:26:17 +02:00
("@calendar" .?t)
2023-09-15 23:00:22 +02:00
("@config" . ?c)
2023-10-14 00:26:17 +02:00
("@devel" . ?d)
2023-09-03 11:05:53 +02:00
("@errand" . ?e)
2023-08-02 23:38:31 +02:00
("@fedora" . ?f)
2023-09-03 11:05:53 +02:00
("@homelab" . ?l)
("@homemaking" . ?m)
("@journal" . ?j)
("@log" . ?w)
("@reading" . ?r)
("@selfcare" . ?s))))
2023-08-02 23:38:31 +02:00
;; org-mode keybindings
(with-eval-after-load 'org
2023-08-10 03:02:01 +02:00
(bind-key "C-c $" 'org-archive-subtree)
2023-08-02 23:38:31 +02:00
(bind-key "C-c r" 'org-capture)
(bind-key "C-c R" 'org-roam-capture)
(bind-key "C-c a" 'org-agenda)
(bind-key "C-c l" 'org-store-link)
(bind-key "C-c L" 'org-insert-link-global)
(bind-key "C-c O" 'org-open-at-point-global))
(setq org-use-effective-time t)
;; org-refile
(setq org-reverse-note-order t) ; new notes prepended
(setq org-refile-use-outline-path 'file)
(setq org-outline-path-complete-in-steps nil)
(setq org-refile-allow-creating-parent-nodes 'confirm)
(setq org-refile-use-cache nil)
(setq org-blank-before-new-entry '((heading . t) (plain-list-item . t)))
(setq org-refile-targets
`((("~/sync/org/inbox.org"
"~/sync/org/grocery.org")
. (:maxlevel .5))))
;; org-todo-keywords
(with-eval-after-load 'org
(setq org-todo-keywords
'((sequence
"STARTED(s)"
"TODO(t)"
"WAITING(w@/!)"
"IDEA(i)"
2023-08-11 04:44:56 +02:00
"SOMEDAY(.)"
"BLOCKED(k@/!)"
"|"
"DONE(x!)"
"CANCELLED(c)")
2023-08-02 23:38:31 +02:00
(sequence "PROJECT" "|" "DONE(x)")
2023-08-11 04:44:56 +02:00
(sequence "MAYBE(,0)" "CHOSEN(c,+)" "|" "REJECTED")))
2023-08-02 23:38:31 +02:00
2023-08-11 04:44:56 +02:00
;; catppuccin palette
2023-08-02 23:38:31 +02:00
(setq org-todo-keyword-faces
2023-08-11 04:44:56 +02:00
'(("STARTED" . (:foreground "#a6d189" :weight bold))
("TODO" . (:foreground "#a6e3a1" :weight bold))
("WAITING" . (:foreground "#f9e2af" :weight bold))
2023-08-02 23:38:31 +02:00
("IDEA" . (:foreground "#74c7ec" :weight bold))
2023-08-11 04:44:56 +02:00
("SOMEDAY" . (:foreground "#f2cdcd" :weight bold))
("BLOCKED" . (:foreground "#c6d0f5" :weight bold))
2023-08-02 23:38:31 +02:00
("DONE" . (:foreground "#f38ba8" :weight bold))
2023-08-11 04:44:56 +02:00
("CANCELLED" . (:foreground "#e78284" :weight bold))
("MAYBE" . (:foreground "#c6d0f5" :weight bold))
("CHOSEN" . (:foreground "#89b4fa" :weight bold))
("REJECTED" . (:foreground "#d20f39" :weight bold)))))
2023-08-02 23:38:31 +02:00
(setq org-log-done 'time)
2023-09-03 11:05:53 +02:00
(setq org-popup-calendar-for-date-prompt nil)
2023-08-02 23:38:31 +02:00
2023-08-28 07:35:48 +02:00
;; org-roam
2023-08-02 23:38:31 +02:00
(setq org-roam-directory "~/sync/org-roam")
(org-roam-db-autosync-mode)
;; org-roam-capture-template
(setq org-roam-capture-templates
'(("m" "main" plain
"%?"
:if-new (file+head "main/${slug}.org"
"#+title: ${title}\n")
:immediate-finish t
:unnarrowed t)
("r" "reference" plain
"%?"
:if-new (file+head "reference/${title}.org"
2023-08-28 07:35:48 +02:00
"#+title: ${title}\n")
2023-08-02 23:38:31 +02:00
:immediate-finish t
:unnarrowed t)
("s" "self" plain
"%?"
:if-new (file+head "self/${slug}.org"
"#+title: ${title}\n#+filetags: :self:\n")
:unnarrowed t)
("S" "self-entry" entry
"* %U\n%?"
:target (file "self/${slug}.org")
:empty-lines 1
:unnarrowed t)
2023-08-10 03:02:01 +02:00
("c" "cookbook" plain
"* %^{Recipe title}\n :PROPERTIES:\n :source-url:%?\n :servings:\n :prep-time:\n :cook-time:\n :ready-in:\n :END:\n** Ingredients\n \n** Directions\n\n"
:if-new (file "recipes/${title}.org")
2023-08-02 23:38:31 +02:00
:unnarrowed t)))
2023-08-28 07:35:48 +02:00
;; org-capture-templates
2023-08-02 23:38:31 +02:00
(setq org-capture-templates
2023-08-28 07:35:48 +02:00
'(("p" "Inbox" entry (file+headline "~/sync/org/inbox.org" "Inbox")
"* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n%?"
:empty-lines-before 1
:unnarrowed t
:immediate-finish t)
("L" "Link" entry (file+headline "~/sync/org/inbox.org" "Inbox")
"* %? [[%:link][%:description]] \nCaptured on: %U"
2023-08-02 23:38:31 +02:00
:empty-lines-before 1
:unnarrowed t
:immediate-finish t)
2023-08-10 03:02:01 +02:00
("d" "Calendar" entry (file "~/sync/org/calendar.org")
2023-08-02 23:38:31 +02:00
"* TODO %?"
:empty-lines-before 1
:unnarrowed t)
("j" "Journal" entry (file+olp+datetree "~/sync/org/journal.org")
"* %U\n%?"
:empty-lines-before 1
:unnarrowed t)
("r" "Reading" entry (file "~/sync/org/reading.org")
"* %a\n%U\n%^{PROMPT}"
:empty-lines-before 1
:unnarrowed t
2023-08-10 03:02:01 +02:00
:immediate-finish t)))
2023-08-02 23:38:31 +02:00
(defun hyperreal/org-capture-slipbox ()
(interactive)
(org-capture nil "s"))
2023-08-10 03:02:01 +02:00
;;;; python-mode
2023-08-02 23:38:31 +02:00
2023-08-28 07:35:48 +02:00
;; set bpython as python shell interpreter
2023-08-02 23:38:31 +02:00
(add-hook! python-mode-hook
2023-10-14 00:26:17 +02:00
(setq python-shell-interpreter "bpython"))
2023-08-02 23:38:31 +02:00
2023-08-28 07:35:48 +02:00
;; enable elpy
(elpy-enable)
;; set tab width; use flake8 as python-flymake-command, python-check-command
(setq python-indent-offset 4)
(add-hook 'python-mode-hook
(lambda ()
(setq-local tab-width 4)
(setq-local python-flymake-command '("flake8" "--max-doc-length=72", "--ignore=E211,E999,F401,F821,W503"))
(setq-local python-check-command "flake8 --max-doc-length=72 --ignore=E211,E999,F401,F821,W503"))
70)
;; use Pyright LSP
(add-hook 'python-mode-hook
(lambda ()
(require 'lsp-pyright)
(lsp)))
2023-09-15 23:00:22 +02:00
(defun run-black-pep8 ()
"Run `black -l 79' on the current Python file."
(interactive)
(shell-command-to-string
(format "black -l 79 %s"
(shell-quote-argument (buffer-file-name)))))
;; autoformat on save with `run-black-pep8'
2023-08-28 07:35:48 +02:00
(add-hook 'elpy-mode-hook
(lambda ()
(add-hook 'before-save-hook
2023-09-15 23:00:22 +02:00
'run-black-pep8)))
2023-08-28 07:35:48 +02:00
;; colorize compilation buffer
;; from https://sachachua.com/dotemacs/index.html#orga33bac5
(require 'ansi-color)
(defun colorize-compilation-buffer ()
(when (eq major-mode 'compilation-mode)
(let ((inhibit-read-only t))
(ansi-color-apply-on-region compilation-filter-start (point-max)))))
(add-hook 'compilation-filter-hook 'colorize-compilation-buffer)
2023-08-02 23:38:31 +02:00
2023-08-10 03:02:01 +02:00
;;;; go-mode
2023-08-02 23:38:31 +02:00
;; completion for GoLang
(add-hook 'completion-at-point-functions 'go-complete-at-point)
;; Go - lsp-mode
(defun lsp-go-install-save-hooks ()
(add-hook 'before-save-hook #'lsp-format-buffer t t)
(add-hook 'before-save-hook #'lsp-organize-imports t t))
(add-hook 'go-mode-hook #'lsp-go-install-save-hooks)
;; Start LSP Mode
(add-hook 'go-mode-hook #'lsp-deferred)
2023-08-28 07:35:48 +02:00
;;;; helpful
(global-set-key (kbd "C-h f") #'helpful-callable)
(global-set-key (kbd "C-h v") #'helpful-variable)
(global-set-key (kbd "C-h k") #'helpful-key)
(global-set-key (kbd "C-h x") #'helpful-command)
(global-set-key (kbd "C-c C-d") #'helpful-at-point)
2023-08-10 03:02:01 +02:00
;;;; dired
2023-08-02 23:38:31 +02:00
(after! dired
(setq dired-listing-switches "-laGh1v --group-directories-first")
(setq dired-confirm-shell-command nil
dired-no-confirm t
dired-deletion-confirmer '(lambda (x) t)
dired-recursive-deletes 'always))
2023-08-20 22:45:21 +02:00
;;;; dictionary
(global-set-key (kbd "C-c l") #'dictionary-lookup-definition)
(setq dictionary-server "dict.org")
;;;; centaur-tabs
(global-set-key (kbd "s-{") 'centaur-tabs-switch-group)
2023-08-21 09:23:12 +02:00
(global-set-key (kbd "s-h") 'centaur-tabs-backward-tab)
(global-set-key (kbd "s-l") 'centaur-tabs-forward-tab)
2023-08-20 22:45:21 +02:00
(setq centaur-tabs-buffer-show-groups t)
2023-10-14 00:26:17 +02:00
(defun my-centaur-tabs-buffer-groups ()
"Create centaur-tabs groups."
(cond
((string-equal "*" (substring (buffer-name) 0 1))
'("Emacs"))
((eq major-mode 'erc-mode)
'("ERC"))
((memq major-mode '(org-mode
org-agenda-clockreport-mode
org-src-mode
org-beamer-mode
org-indent-mode
org-bullets-mode
org-agenda-log-mode
diary-mode
org-roam-mode))
'("OrgMode"))
((memq major-mode '(dired-mode))
'("Dired"))
((memq major-mode '(helpful-mode
help-mode))
'("Help"))
((memq major-mode '(vterm-mode))
'("VTerm"))))
(setq centaur-tabs-buffer-groups-function 'my-centaur-tabs-buffer-groups)
2023-08-20 22:45:21 +02:00
;; prevent access to specified buffers
(defun centaur-tabs-hide-tab (x)
"Do not show given buffer in tabs."
(let ((name (format "%s" x)))
(or
;; Current window is not dedicated window.
(window-dedicated-p (selected-window))
;; Buffer name does not match blacklisted buffers.
(string-prefix-p "*epc" name)
(string-prefix-p "*Compile-Log*" name)
(string-prefix-p "*lsp" name)
(string-prefix-p "*tramp" name)
(string-prefix-p "*help" name)
(string-prefix-p "*Help" name)
2023-10-14 00:26:17 +02:00
(string-prefix-p "*vterminal" name)
2023-08-20 22:45:21 +02:00
;; Buffer is not a magit buffer.
(and (string-prefix-p "magit" name)
(not (file-name-extension name)))
)))
2023-08-10 03:02:01 +02:00
;;;; elfeed
2023-08-02 23:38:31 +02:00
2023-08-28 07:35:48 +02:00
(setq elfeed-protocol-enabled-protocols '(fever))
2023-08-02 23:38:31 +02:00
(elfeed-protocol-enable)
2023-08-28 07:35:48 +02:00
(setq elfeed-protocol-fever-update-unread-only t)
2023-10-14 00:26:17 +02:00
(setq elfeed-protocol-feeds '(("fever+https://admin@rss.hyperreal.coffee"
:api-url "https://rss.hyperreal.coffee/fever/"
:password (shell-command-output-string "pass show miniflux/admin"))))
;; ;; elpher
(setq elpher-certificate-directory "~/sync/elpher/certs")
(setq elpher-default-url-type "gemini")
;;;; vterm
(setq vterm-kill-buffer-on-exit t)
(setq vterm-always-compile-module t)
(setq multi-vterm-buffer-name "localhost")
(defun hyperreal/create-mvterm-buffer ()
"Create new multi-vterm buffer and rename it to localhost<i>
and switch to it."
(interactive)
(let ((index 1)
(buffer-name "localhost"))
;; Find the next available index number
(while (get-buffer (format "%s<%d>" buffer-name index))
(setq index (1+ index)))
(multi-vterm)
(setq mvterm-buffer-name (format "%s<%d>" buffer-name index))
(rename-buffer mvterm-buffer-name)
(message "Created and started: %s" mvterm-buffer-name)
(switch-to-buffer mvterm-buffer-name)))
(defun hyperreal/setup-mvterm ()
"Create a set of vterm buffers for my terminal setup."
(interactive)
(require 'vterm)
(let ((buffer-command-pairs '(("journald" . "sudo journalctl -f")
("htop" . "htop")
("nexus" . "autossh -M 0 jas@nexus.local")
("apocrypha" . "autossh -M 0 jas@apocrypha.local")
("rockpro64" . "autossh -M 0 dietpi@rockpro64.local")
("orangepi5" . "autossh -M 0 dietpi@orangepi5.local"))))
(dolist (pair buffer-command-pairs)
(let ((buffer-name (car pair))
(command (cdr pair)))
;; Check if buffer exists
(unless (get-buffer buffer-name)
(multi-vterm)
(rename-buffer buffer-name)
;; Send the command to the vterm buffer
(vterm-send-string command)
(vterm-send-return)
(message "Created and started: %s" buffer-name))))
;; Create and switch to default buffer
(hyperreal/create-mvterm-buffer)
(centaur-tabs-mode)))
(defun hyperreal/kill-all-vterms ()
"Kill all vterm buffers (do not ask for confirmation)."
(interactive)
(let ((kill-buffer-query-functions nil))
(dolist (buffer (buffer-list))
(with-current-buffer buffer
(when (eq major-mode 'vterm-mode)
(kill-buffer buffer)))))
(message "All vterm buffers killed."))
;;;; ERC
(setq erc-timestamp-format "[%H:%M:%S] ")
(setq erc-insert-timestamp-function 'erc-insert-timestamp-left)
(setq erc-fill-prefix " ")
(setq erc-fill-function 'erc-fill-static)
(setq erc-hide-list '("JOIN" "PART" "QUIT"))
(defun tilde-chat ()
"Connect to irc.tilde.chat."
(interactive)
(setq erc-email-userid "hyperreal/irc.tilde.chat")
(erc-tls :server "chat.sr.ht"
:port 6697
:nick "hyperreal"
:password (shell-command-output-string "pass show chat.sr.ht/hyperreal")
:full-name "Jeffrey Serio")
(centaur-tabs-mode))
(defun libera-chat ()
"Connect to irc.libera.chat."
(interactive)
(setq erc-email-userid "hyperreal/irc.libera.chat")
(erc-tls :server "chat.sr.ht"
:port 6697
:nick "hyperreal"
:password (shell-command-output-string "pass show chat.sr.ht/hyperreal")
:full-name "Jeffrey Serio")
(centaur-tabs-mode))
;; nickcolor funcs lifted from EmacsWiki
(defmacro unpack-color (color red green blue &rest body)
`(let ((,red (car ,color))
(,green (car (cdr ,color)))
(,blue (car (cdr (cdr ,color)))))
,@body))
(defun rgb-to-html (color)
(unpack-color color red green blue
(concat "#" (format "%02x%02x%02x" red green blue))))
(defun hexcolor-luminance (color)
(unpack-color color red green blue
(floor (+ (* 0.299 red) (* 0.587 green) (* 0.114 blue)))))
(defun invert-color (color)
(unpack-color color red green blue
`(,(- 255 red) ,(- 255 green) ,(- 255 blue))))
(defun erc-get-color-for-nick (nick dark)
(let* ((hash (md5 (downcase nick)))
(red (mod (string-to-number (substring hash 0 10) 16) 256))
(blue (mod (string-to-number (substring hash 10 20) 16) 256))
(green (mod (string-to-number (substring hash 20 30) 16) 256))
(color `(,red ,green ,blue)))
(rgb-to-html (if (if dark (< (hexcolor-luminance color) 85)
(> (hexcolor-luminance color) 170))
(invert-color color)
color))))
(defun erc-highlight-nicknames ()
(save-excursion
(goto-char (point-min))
(while (re-search-forward "\\w+" nil t)
(let* ((bounds (bounds-of-thing-at-point 'symbol))
(nick (buffer-substring-no-properties (car bounds) (cdr bounds))))
(when (erc-get-server-user nick)
(put-text-property
(car bounds) (cdr bounds) 'face
(cons 'foreground-color (erc-get-color-for-nick nick 't))))))))
(add-hook 'erc-insert-modify-hook 'erc-highlight-nicknames)
;; set the column width based on window width
(add-hook 'window-configuration-change-hook
#'(lambda ()
(setq erc-fill-column (- (window-width) 2))))