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 ()
|
|
|
|
"Put the whole buffer content to `kill-ring', or text selection if there's one.
|
|
|
|
Respects `narrow-to-region'.
|
|
|
|
URL `https://ergomacs.org/emacs/emacs_copy_cut_all_or_region.html'
|
|
|
|
Version 2015-08-22"
|
|
|
|
(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."))))
|
|
|
|
|
|
|
|
;; Cut all or text selection
|
|
|
|
(defun xah-cut-all-or-region ()
|
|
|
|
"Cut the whole buffer content to `kill-ring', or text selection if there's one.
|
|
|
|
Respects `narrow-to-region'.
|
|
|
|
URL `https://ergomacs.org/emacs/emacs_copy_cut_all_or_region.html'
|
|
|
|
Version 2015-08-22"
|
|
|
|
(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
|
|
|
|
(defun browse-host-firefox (url &rest ignored)
|
|
|
|
"Browse URL with the host's Firefox using distrobox-exec."
|
|
|
|
(interactive "sURL: ")
|
|
|
|
(shell-command (concat "firefox " url)))
|
|
|
|
|
|
|
|
(setq browse-url-browser-function 'browse-host-firefox)
|
|
|
|
|
|
|
|
;; 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 ()
|
|
|
|
"Move point to first non-whitespace character or beginning-of-line.
|
|
|
|
|
|
|
|
Move point to the first non-whitespace character on this line.
|
|
|
|
If point was already at that position, move point to beginning of line."
|
|
|
|
(interactive "^")
|
|
|
|
(let ((oldpos (point)))
|
|
|
|
(back-to-indentation)
|
|
|
|
(and (= oldpos (point))
|
|
|
|
(beginning-of-line))))
|
|
|
|
|
|
|
|
(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
|
|
|
|
'(emacs-lisp-mode
|
|
|
|
python-mode))
|
|
|
|
|
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)
|
|
|
|
("@calendar" .?d)
|
2023-09-15 23:00:22 +02:00
|
|
|
("@config" . ?c)
|
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
|
|
|
|
(setq python-shell-interpreter "bpython"))
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
(defun centaur-tabs-buffer-groups ()
|
|
|
|
"`centaur-tabs-buffer-groups' control buffers' group rules.
|
|
|
|
|
|
|
|
Group centaur-tabs with mode if buffer is derived from `eshell-mode'
|
|
|
|
`emacs-lisp-mode' `dired-mode' `org-mode' `magit-mode'
|
|
|
|
All buffer names starting with * will group to \"Emacs\".
|
|
|
|
Other buffer groups by `centaur-tabs-get-group-name' wit project name."
|
|
|
|
(list
|
|
|
|
(cond
|
|
|
|
((or (string-equal "*" (substring (buffer-name) 0 1))
|
|
|
|
(memq major-mode '(magit-process-mode
|
|
|
|
magit-status-mode
|
|
|
|
magit-diff-mode
|
|
|
|
magit-log-mode
|
|
|
|
magit-file-mode
|
|
|
|
magit-blob-mode
|
|
|
|
magit-blame-mode
|
|
|
|
)))
|
|
|
|
"Emacs")
|
|
|
|
((derived-mode-p 'prog-mode)
|
|
|
|
"Editing")
|
|
|
|
((derived-mode-p 'dired-mode)
|
|
|
|
"Dired")
|
|
|
|
((memq major-mode '(helpful-mode
|
|
|
|
help-mode))
|
|
|
|
"Help")
|
|
|
|
((memq major-mode '(org-mode
|
|
|
|
org-agenda-clockreport-mode
|
|
|
|
org-src-mode
|
|
|
|
org-agenda-mode
|
|
|
|
org-beamer-mode
|
|
|
|
org-indent-mode
|
|
|
|
org-bullets-mode
|
|
|
|
org-agenda-log-mode
|
|
|
|
diary-mode
|
|
|
|
org-roam-mode))
|
|
|
|
"OrgMode")
|
|
|
|
(t
|
|
|
|
(centaur-tabs-get-group-name (current-buffer))))))
|
|
|
|
|
|
|
|
;; 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)
|
|
|
|
|
|
|
|
;; 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-08-02 23:38:31 +02:00
|
|
|
(setq elfeed-feeds (list
|
2023-08-28 07:35:48 +02:00
|
|
|
(list "fever+https://hyperreal@rss.hyperreal.coffee"
|
|
|
|
:api-url "https://rss.hyperreal.coffee/api/fever.php"
|
|
|
|
:password (shell-command-output-string "pass show freshrss/hyperreal"))))
|