]> git.armaanb.net Git - config.org.git/blob - config.org
Add function to open circe
[config.org.git] / config.org
1 #+TITLE: System Configuration
2 #+DESCRIPTION: Personal system configuration in org-mode format.
3 #+AUTHOR: Armaan Bhojwani
4 #+EMAIL: me@armaanb.net
5
6 * Welcome
7 Welcome to my system configuration! This file contains my Emacs configuration, but also my config files for many of the other programs on my system!
8 ** Compatability
9 I am currently using Emacs 28 with native compilation, so some settings and packages may not be available for older versions of Emacs. This is a purely personal configuration, so while I can guarantee that it works on my setup, it might not work for you.
10 ** Choices
11 I chose to create a powerful, yet not overly heavy Emacs configuration. Things like a fancy modeline, icons, or LSP mode do not increase my productivity, and create visual clutter, and thus have been excluded.
12
13 Another important choice has been to integrate Emacs into a large part of my computing environment (see [[*Emacs OS]]). I use email, IRC, RSS, et cetera, all through Emacs which simplifies my workflow and creates an amazingly integrated environment.
14
15 Lastly, I use Evil mode. Modal keybindings are simpler and more ergonomic than standard Emacs style, and Vim keybindings are what I'm comfortable with and are pervasive throughout computing.
16 ** TODOs
17 *** TODO Turn keybinding and hook declarations into use-package declarations where possible
18 *** TODO Include offlineimap config
19 ** License
20 Released under the [[https://opensource.org/licenses/MIT][MIT license]] by Armaan Bhojwani, 2021. Note that many snippets are taken from online, and other sources, who are credited for their work near their contributions.
21 * Package management
22 ** Bootstrap straight.el
23 straight.el is really nice for managing package, and it integrates nicely with use-package. It uses the bootstrapping system defined here for installation.
24 #+begin_src emacs-lisp
25   (defvar native-comp-deferred-compilation-deny-list ())
26   (defvar bootstrap-version)
27   (let ((bootstrap-file
28          (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
29         (bootstrap-version 5))
30     (unless (file-exists-p bootstrap-file)
31       (with-current-buffer
32           (url-retrieve-synchronously
33            "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
34            'silent 'inhibit-cookies)
35         (goto-char (point-max))
36         (eval-print-last-sexp)))
37     (load bootstrap-file nil 'nomessage))
38 #+end_src
39 ** Replace package.el with straight
40 #+begin_src emacs-lisp
41   (straight-use-package 'use-package)
42   (setq straight-use-package-by-default t)
43 #+end_src
44 * Visual options
45 ** Theme
46 Use the Modus Operandi theme by Protesilaos Stavrou. Its the best theme for Emacs by far, because how clear and readable it is. It is highly customizable, but I just set a few options here.
47 #+begin_src emacs-lisp
48   (setq modus-themes-slanted-constructs t
49         modus-themes-bold-constructs t
50         modus-themes-mode-line '3d
51         modus-themes-scale-headings t
52         modus-themes-diffs 'desaturated)
53   (load-theme 'modus-vivendi t)
54 #+end_src
55 ** Typography
56 *** Font
57 JetBrains Mono is a great programming font with ligatures. The "NF" means that it has been patched with the [[https://www.nerdfonts.com/][Nerd Fonts]].
58 #+begin_src emacs-lisp
59   (add-to-list 'default-frame-alist '(font . "JetBrainsMonoNF-12"))
60 #+end_src
61 *** Ligatures
62 #+begin_src emacs-lisp
63   (use-package ligature
64     :straight (ligature :type git :host github :repo "mickeynp/ligature.el")
65     :config
66     (ligature-set-ligatures
67      '(prog-mode text-mode)
68      '("-|" "-~" "---" "-<<" "-<" "--" "->" "->>" "-->" "/=" "/=="
69        "/>" "//" "/*" "*>" "*/" "<-" "<<-" "<=>" "<=" "<|" "<||"
70        "<|||" "<|>" "<:" "<>" "<-<" "<<<" "<==" "<<=" "<=<" "<==>"
71        "<-|" "<<" "<~>" "<=|" "<~~" "<~" "<$>" "<$" "<+>" "<+" "</>"
72        "</" "<*" "<*>" "<->" "<!--" ":>" ":<" ":::" "::" ":?" ":?>"
73        ":=" "::=" "=>>" "==>" "=/=" "=!=" "=>" "===" "=:=" "==" "!=="
74        "!!" "!=" ">]" ">:" ">>-" ">>=" ">=>" ">>>" ">-" ">=" "&&&"
75        "&&" "|||>" "||>" "|>" "|]" "|}" "|=>" "|->" "|=" "||-" "|-"
76        "||=" "||" ".." ".?" ".=" ".-" "..<" "..." "+++" "+>" "++"
77        "[||]" "[<" "[|" "{|" "?." "?=" "?:" "##" "###" "####" "#["
78        "#{" "#=" "#!" "#:" "#_(" "#_" "#?" "#(" ";;" "_|_" "__" "~~"
79        "~~>" "~>" "~-" "~@" "$>" "^=" "]#"))
80     (global-ligature-mode t))
81 #+end_src
82 ** Line numbers
83 Display relative line numbers except in certain modes.
84 #+begin_src emacs-lisp
85   (global-display-line-numbers-mode)
86   (setq display-line-numbers-type 'relative)
87   (dolist (no-line-num '(term-mode-hook
88                          pdf-view-mode-hook
89                          shell-mode-hook
90                          org-mode-hook
91                          circe-mode-hook
92                          eshell-mode-hook))
93     (add-hook no-line-num (lambda () (display-line-numbers-mode 0))))
94 #+end_src
95 ** Highlight matching parenthesis
96 #+begin_src emacs-lisp
97   (use-package paren
98     :config (show-paren-mode)
99     :custom (show-paren-style 'parenthesis))
100 #+end_src
101 ** Modeline
102 *** Show current function
103 #+begin_src emacs-lisp
104   (which-function-mode)
105 #+end_src
106 *** Make position in file more descriptive
107 Show current column and file size.
108 #+begin_src emacs-lisp
109   (column-number-mode)
110   (size-indication-mode)
111 #+end_src
112 *** Hide minor modes
113 #+begin_src emacs-lisp
114   (use-package minions
115     :config (minions-mode))
116 #+end_src
117 ** Ruler
118 Show a ruler at a certain number of chars depending on mode.
119 #+begin_src emacs-lisp
120   (setq display-fill-column-indicator-column 80)
121   (global-display-fill-column-indicator-mode)
122 #+end_src
123 ** Highlight todo items in comments
124 #+begin_src emacs-lisp
125   (use-package hl-todo
126     :straight (hl-todo :type git :host github :repo "tarsius/hl-todo")
127     :config (global-hl-todo-mode 1))
128 #+end_src
129 ** Blink cursor
130 #+begin_src emacs-lisp
131   (blink-cursor-mode)
132 #+end_src
133 ** Visual line mode
134 Soft wrap words and do operations by visual lines except in programming modes.
135 #+begin_src emacs-lisp
136   (global-visual-line-mode 1)
137   (dolist (hook '(prog-mode-hook
138                   calc-trail-mode-hook
139                   org-agenda-mode-hook
140                   mu4e-headers-mode-hook))
141     (add-hook hook (lambda () (visual-line-mode -1))))
142 #+end_src
143 ** Display number of matches in search
144 #+begin_src emacs-lisp
145   (use-package anzu
146     :config (global-anzu-mode)
147     :bind
148     ([remap query-replace] . anzu-query-replace)
149     ([remap query-replace-regexp] . anzu-query-replace-regexp))
150 #+end_src
151 ** Visual bell
152 Invert modeline color instead of audible bell or the standard visual bell.
153 #+begin_src emacs-lisp
154   (setq visible-bell nil
155         ring-bell-function
156         (lambda () (invert-face 'mode-line)
157           (run-with-timer 0.1 nil #'invert-face 'mode-line)))
158 #+end_src
159 * Evil mode
160 ** General
161 #+begin_src emacs-lisp
162   (use-package evil
163     :custom (select-enable-clipboard nil)
164     :config
165     (evil-mode)
166     (fset 'evil-visual-update-x-selection 'ignore) ;; Keep clipboard and register seperate
167     ;; Use visual line motions even outside of visual-line-mode buffers
168     (evil-global-set-key 'motion "j" 'evil-next-visual-line)
169     (evil-global-set-key 'motion "k" 'evil-previous-visual-line)
170     (global-set-key (kbd "<escape>") 'keyboard-escape-quit))
171 #+end_src
172 ** Evil collection
173 Evil bindings for tons of packages.
174 #+begin_src emacs-lisp
175   (use-package evil-collection
176     :after evil
177     :init (evil-collection-init)
178     :custom (evil-collection-setup-minibuffer t))
179 #+end_src
180 ** Surround
181 tpope prevails!
182 #+begin_src emacs-lisp
183   (use-package evil-surround
184     :config (global-evil-surround-mode))
185 #+end_src
186 ** Nerd commenter
187 Makes commenting super easy
188 #+begin_src emacs-lisp
189   (use-package evil-nerd-commenter
190     :bind (:map evil-normal-state-map
191                 ("gc" . evilnc-comment-or-uncomment-lines))
192     :custom (evilnc-invert-comment-line-by-line nil))
193 #+end_src
194 ** Undo redo
195 Fix the oopsies!
196 #+begin_src emacs-lisp
197   (evil-set-undo-system 'undo-redo)
198 #+end_src
199 ** Number incrementing
200 Add back C-a/C-x bindings.
201 #+begin_src emacs-lisp
202   (use-package evil-numbers
203     :straight (evil-numbers :type git :host github :repo "juliapath/evil-numbers")
204     :bind (:map evil-normal-state-map
205                 ("C-M-a" . evil-numbers/inc-at-pt)
206                 ("C-M-x" . evil-numbers/dec-at-pt)))
207 #+end_src
208 ** Evil org
209 #+begin_src emacs-lisp
210   (use-package evil-org
211     :after org
212     :hook (org-mode . evil-org-mode)
213     :config
214     (evil-org-set-key-theme '(textobjects insert navigation shift todo)))
215
216   (use-package evil-org-agenda
217     :straight (:type built-in)
218     :after evil-org
219     :config (evil-org-agenda-set-keys))
220 #+end_src
221 * Org mode
222 ** General
223 #+begin_src emacs-lisp
224   (use-package org
225     :straight (:type built-in)
226     :commands (org-capture org-agenda)
227     :custom
228     (org-ellipsis " ▾")
229     (org-agenda-start-with-log-mode t)
230     (org-agenda-files (quote ("~/Org/tasks.org" "~/Org/break.org")))
231     (org-log-done 'time)
232     (org-log-into-drawer t)
233     (org-src-tab-acts-natively t)
234     (org-src-fontify-natively t)
235     (org-startup-indented t)
236     (org-hide-emphasis-markers t)
237     (org-fontify-whole-block-delimiter-line nil)
238     (org-archive-default-command 'org-archive-to-archive-sibling)
239     :bind
240     ("C-c a" . org-agenda)
241     (:map evil-normal-state-map ("ga" . org-archive-subtree-default)))
242 #+end_src
243 ** Tempo
244 Define templates for lots of common structure elements. Mostly just used within this file.
245 #+begin_src emacs-lisp
246   (use-package org-tempo
247     :after org
248     :straight (:type built-in)
249     :config
250     (dolist (addition '(("el" . "src emacs-lisp")
251                         ("el" . "src emacs-lisp")
252                         ("sp" . "src conf :tangle ~/.spectrwm.conf")
253                         ("ash" . "src shell :tangle ~/.config/ash/ashrc")
254                         ("pi" . "src conf :tangle ~/.config/picom/picom.conf")
255                         ("git" . "src conf :tangle ~/.gitconfig")
256                         ("du" . "src conf :tangle ~/.config/dunst/dunstrc")
257                         ("za" . "src conf :tangle ~/.config/zathura/zathurarc")
258                         ("ff1" . "src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css")
259                         ("ff2" . "src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userContent.css")
260                         ("xr" . "src conf :tangle ~/.Xresources")
261                         ("tm" . "src conf :tangle ~/.tmux.conf")
262                         ("gp" . "src conf :tangle ~/.gnupg/gpg.conf")
263                         ("ag" . "src conf :tangle ~/.gnupg/gpg-agent.conf")))
264       (add-to-list 'org-structure-template-alist addition)))
265 #+end_src
266 * Autocompletion
267 ** Ivy
268 A well balanced completion framework.
269 #+begin_src emacs-lisp
270   (use-package ivy
271     :bind (("C-s" . swiper)
272            :map ivy-minibuffer-map
273            ("TAB" . ivy-alt-done)
274            :map ivy-switch-buffer-map
275            ("M-d" . ivy-switch-buffer-kill))
276     :config (ivy-mode))
277 #+end_src
278 ** Ivy-rich
279 #+begin_src emacs-lisp
280   (use-package ivy-rich
281     :after (ivy counsel)
282     :config (ivy-rich-mode))
283 #+end_src
284 ** Counsel
285 Ivy everywhere.
286 #+begin_src emacs-lisp
287   (use-package counsel
288     :bind (("C-M-j" . 'counsel-switch-buffer)
289            :map minibuffer-local-map
290            ("C-r" . 'counsel-minibuffer-history))
291     :custom (counsel-linux-app-format-function #'counsel-linux-app-format-function-name-only)
292     :config (counsel-mode))
293 #+end_src
294 ** Remember frequent commands
295 #+begin_src emacs-lisp
296   (use-package ivy-prescient
297     :after counsel
298     :custom (ivy-prescient-enable-filtering nil)
299     :config
300     (prescient-persist-mode)
301     (ivy-prescient-mode))
302 #+end_src
303 ** Swiper
304 Better search utility.
305 #+begin_src emacs-lisp
306   (use-package swiper)
307 #+end_src
308 * Emacs OS
309 ** RSS
310 Use elfeed for reading RSS. I have another file with all the feeds in it that I'd rather keep private.
311 #+begin_src emacs-lisp
312   (use-package elfeed
313     :bind (("C-c e" . elfeed))
314     :config
315     (load "~/.emacs.d/feeds.el")
316     (add-hook 'elfeed-new-entry-hook
317               (elfeed-make-tagger :feed-url "youtube\\.com"
318                                   :add '(youtube)))
319     :bind (:map elfeed-search-mode-map ("C-c C-o" . 'elfeed-show-visit)))
320
321   (use-package elfeed-goodies
322     :after elfeed
323     :config (elfeed-goodies/setup))
324 #+end_src
325 ** Email
326 Use mu4e for reading emails.
327
328 I use `offlineimap` to sync my maildirs. It is slower than mbsync, but is fast enough for me, especially when ran with the =-q= option.
329
330 Contexts are a not very well known feature of mu4e that makes it super easy to manage multiple accounts. Much better than some of the hacky methods and external packages that I've seen.
331 #+begin_src emacs-lisp
332   (use-package smtpmail
333     :straight (:type built-in))
334   (use-package mu4e
335     :load-path "/usr/share/emacs/site-lisp/mu4e"
336     :straight (:build nil)
337     :bind (("C-c m" . mu4e))
338     :config
339     (setq user-full-name "Armaan Bhojwani"
340           smtpmail-local-domain "armaanb.net"
341           smtpmail-stream-type 'ssl
342           smtpmail-smtp-service '465
343           mu4e-change-filenames-when-moving t
344           mu4e-get-mail-command "offlineimap -q"
345           message-citation-line-format "On %a %d %b %Y at %R, %f wrote:\n"
346           message-citation-line-function 'message-insert-formatted-citation-line
347           mu4e-completing-read-function 'ivy-completing-read
348           mu4e-confirm-quit nil
349           mu4e-view-use-gnus t
350           mail-user-agent 'mu4e-user-agent
351           mail-context-policy 'pick-first
352           mu4e-contexts
353           `( ,(make-mu4e-context
354                :name "school"
355                :enter-func (lambda () (mu4e-message "Entering school context"))
356                :leave-func (lambda () (mu4e-message "Leaving school context"))
357                :match-func (lambda (msg)
358                              (when msg
359                                (string-match-p "^/school" (mu4e-message-field msg :maildir))))
360                :vars '((user-mail-address . "abhojwani22@nobles.edu")
361                        (mu4e-sent-folder . "/school/Sent")
362                        (mu4e-drafts-folder . "/school/Drafts")
363                        (mu4e-trash-folder . "/school/Trash")
364                        (mu4e-refile-folder . "/school/Archive")
365                        (message-cite-reply-position . above)
366                        (user-mail-address . "abhojwani22@nobles.edu")
367                        (smtpmail-smtp-user . "abhojwani22@nobles.edu")
368                        (smtpmail-smtp-server . "smtp.gmail.com")))
369              ,(make-mu4e-context
370                :name "personal"
371                :enter-func (lambda () (mu4e-message "Entering personal context"))
372                :leave-func (lambda () (mu4e-message "Leaving personal context"))
373                :match-func (lambda (msg)
374                              (when msg
375                                (string-match-p "^/personal" (mu4e-message-field msg :maildir))))
376                :vars '((mu4e-sent-folder . "/personal/Sent")
377                        (mu4e-drafts-folder . "/personal/Drafts")
378                        (mu4e-trash-folder . "/personal/Trash")
379                        (mu4e-refile-folder . "/personal/Archive")
380                        (user-mail-address . "me@armaanb.net")
381                        (message-cite-reply-position . below)
382                        (smtpmail-smtp-user . "me@armaanb.net")
383                        (smtpmail-smtp-server . "smtp.mailbox.org")))))
384     (add-to-list 'mu4e-bookmarks
385                  '(:name "Unified inbox"
386                          :query "maildir:\"/personal/INBOX\" or maildir:\"/school/INBOX\""
387                          :key ?b))
388     :hook ((mu4e-compose-mode . flyspell-mode)
389            (mu4e-compose-mode . auto-fill-mode)
390            (mu4e-view-mode-hook . turn-on-visual-line-mode)
391            (message-send-hook . (lambda () (unless (yes-or-no-p "Ya sure 'bout that?")
392                                              (signal 'quit nil))))))
393 #+end_src
394 Discourage Gnus from displaying HTML emails
395 #+begin_src emacs-lisp
396   (with-eval-after-load "mm-decode"
397     (add-to-list 'mm-discouraged-alternatives "text/html")
398     (add-to-list 'mm-discouraged-alternatives "text/richtext"))
399 #+end_src
400 ** Default browser
401 Set EWW as default browser except for multimedia which should open in MPV.
402 #+begin_src emacs-lisp
403   (defun browse-url-mpv (url &optional new-window)
404     "Open URL in MPV."
405     (interactive)
406     (start-process "mpv" "*mpv*" "mpv" url))
407
408   (setq browse-url-handlers
409         (quote
410          (("youtu\\.?be" . browse-url-mpv)
411           ("peertube.*" . browse-url-mpv)
412           ("vid.*" . browse-url-mpv)
413           ("vid.*" . browse-url-mpv)
414           ("*.mp4" . browse-url-mpv)
415           ("*.mp3" . browse-url-mpv)
416           ("*.ogg" . browse-url-mpv)
417           ("." . eww-browse-url)
418           )))
419 #+end_src
420 ** EWW
421 Some EWW enhancements.
422 *** Give buffer a useful name
423 #+begin_src emacs-lisp
424   ;; From https://protesilaos.com/dotemacs/
425   (defun prot-eww--rename-buffer ()
426     "Rename EWW buffer using page title or URL.
427         To be used by `eww-after-render-hook'."
428     (let ((name (if (eq "" (plist-get eww-data :title))
429                     (plist-get eww-data :url)
430                   (plist-get eww-data :title))))
431       (rename-buffer (format "*%s # eww*" name) t)))
432
433   (use-package eww
434     :straight (:type built-in)
435     :bind (("C-c w" . eww))
436     :hook (eww-after-render-hook prot-eww--rename-buffer))
437 #+end_src
438 *** Keybinding
439 #+begin_src emacs-lisp
440   (global-set-key (kbd "C-c w") 'eww)
441 #+end_src
442 ** IRC
443 Circe is a really nice IRC client that claims to be above RCIRC and below ERC in terms of features. ERC felt a bit messy and finicky to me, and Circe has all the features that I need. This setup gets the password for my bouncer (Pounce) instances via my =~/.authinfo.gpg= file.
444 #+begin_src emacs-lisp
445   (defun fetch-password (&rest params)
446     (require 'auth-source)
447     (let ((match (car (apply 'auth-source-search params))))
448       (if match
449           (let ((secret (plist-get match :secret)))
450             (if (functionp secret)
451                 (funcall secret)
452               secret))
453         (error "Password not found for %S" params))))
454
455   (use-package circe
456     :config
457     (enable-lui-track)
458     (enable-circe-color-nicks)
459     (setq circe-network-defaults '(("libera"
460                                     :host "irc.armaanb.net"
461                                     :nick "emacs"
462                                     :user "emacs"
463                                     :use-tls t
464                                     :port 6698
465                                     :pass (lambda (null) (fetch-password
466                                                           :login "emacs"
467                                                           :machine "irc.armaanb.net"
468                                                           :port 6698)))
469                                    ("oftc"
470                                     :host "irc.armaanb.net"
471                                     :nick "emacs"
472                                     :user "emacs"
473                                     :use-tls t
474                                     :port 6699
475                                     :pass (lambda (null) (fetch-password
476                                                           :login "emacs"
477                                                           :machine "irc.armaanb.net"
478                                                           :port 6699)))
479                                    ("tilde"
480                                     :host "irc.armaanb.net"
481                                     :nick "emacs"
482                                     :user "emacs"
483                                     :use-tls t
484                                     :port 6696
485                                     :pass (lambda (null) (fetch-password
486                                                           :login "emacs"
487                                                           :machine "irc.armaanb.net"
488                                                           :port 6696)))))
489     :custom (circe-default-part-message "goodbye!")
490     :bind (:map circe-mode-map ("C-c C-r" . circe-reconnect-all)))
491
492   (defun acheam-irc ()
493     "Open circe"
494     (interactive)
495     (if (get-buffer "irc.armaanb.net:6696")
496         (switch-to-buffer "irc.armaanb.net:6696")
497       (progn (circe "libera")
498              (circe "oftc")
499              (circe "tilde"))))
500
501   (global-set-key (kbd "C-c i") 'acheam-irc)
502 #+end_src
503 ** Calendar
504 Still experimenting with this setup. Not sure if I will keep it, but it works well for seeing my calendar events. I use =vdirsyncer= to sync my calendar events which I'm really not happy with.
505 #+begin_src emacs-lisp
506   (defun sync-calendar ()
507     "Sync calendars with vdirsyncer"
508     (interactive)
509     (async-shell-command "vdirsyncer sync"))
510
511   (use-package calfw
512     :bind (:map cfw:calendar-mode-map ("C-S-u" . sync-calendar)))
513   (use-package calfw-ical)
514   (use-package calfw-org)
515
516   (defun acheam-calendar ()
517     "Open calendars"
518     (interactive)
519     (cfw:open-calendar-buffer
520      :contents-sources (list
521                         (cfw:org-create-source "Green")
522                         (cfw:ical-create-source
523                          "Personal"
524                          "~/.local/share/vdirsyncer/mailbox/Y2FsOi8vMC8zMQ.ics"
525                          "Gray")
526                         (cfw:ical-create-source
527                          "Personal"
528                          "~/.local/share/vdirsyncer/mailbox/Y2FsOi8vMC8zMQ.ics"
529                          "Red")
530                         (cfw:ical-create-source
531                          "School"
532                          "~/.local/share/vdirsyncer/school/abhojwani22@nobles.edu.ics"
533                          "Cyan"))
534      :view 'week))
535
536   (global-set-key (kbd "C-c c") 'acheam-calendar)
537 #+end_src
538 ** PDF reader
539 #+begin_src emacs-lisp
540   (use-package pdf-tools
541     :hook (pdf-view-mode . pdf-view-midnight-minor-mode))
542 #+end_src
543 * Emacs IDE
544 ** Python formatting
545 #+begin_src emacs-lisp
546   (use-package blacken
547     :hook (python-mode . blacken-mode)
548     :custom (blacken-line-length 79))
549
550 #+end_src
551 ** Strip trailing whitespace
552 #+begin_src emacs-lisp
553   (use-package ws-butler
554     :config (ws-butler-global-mode))
555 #+end_src
556 ** Flycheck
557 Automatic linting. I need to look into configuring this more.
558 #+begin_src emacs-lisp
559   (use-package flycheck
560     :config (global-flycheck-mode))
561 #+end_src
562 ** Project management
563 I never use this, but apparently its very powerful. Another item on my todo list.
564 #+begin_src emacs-lisp
565   (use-package projectile
566     :config (projectile-mode)
567     :custom ((projectile-completion-system 'ivy))
568     :bind-keymap
569     ("C-c p" . projectile-command-map)
570     :init
571     (when (file-directory-p "~/Code")
572       (setq projectile-project-search-path '("~/Code")))
573     (setq projectile-switch-project-action #'projectile-dired))
574
575   (use-package counsel-projectile
576     :after projectile
577     :config (counsel-projectile-mode))
578 #+end_src
579 ** Dired
580 The best file manager!
581 #+begin_src emacs-lisp
582   (use-package dired
583     :straight (:type built-in)
584     :commands (dired dired-jump)
585     :custom ((dired-listing-switches "-agho --group-directories-first"))
586     :config (evil-collection-define-key 'normal 'dired-mode-map
587               "h" 'dired-single-up-directory
588               "l" 'dired-single-buffer))
589
590   (use-package dired-single
591     :commands (dired dired-jump))
592
593   (use-package dired-open
594     :commands (dired dired-jump)
595     :custom (dired-open-extensions '(("png" . "feh")
596                                      ("mkv" . "mpv"))))
597
598   (use-package dired-hide-dotfiles
599     :hook (dired-mode . dired-hide-dotfiles-mode)
600     :config
601     (evil-collection-define-key 'normal 'dired-mode-map
602       "H" 'dired-hide-dotfiles-mode))
603 #+end_src
604 ** Git
605 *** Magit
606 **** TODO Write a command that commits hunk, skipping staging step.
607 A very good Git interface.
608 #+begin_src emacs-lisp
609   (use-package magit)
610 #+end_src
611 *** Email
612 #+begin_src emacs-lisp
613   (use-package piem)
614   (use-package git-email
615     :straight (git-email :repo "https://git.sr.ht/~yoctocell/git-email")
616     :config (git-email-piem-mode))
617 #+end_src
618 * General text editing
619 ** Indentation
620 Automatically indent after every change. I'm not sure how much I like this. It slows down the editor and code sometimes ends up in a half-indented state meaning I have to manually reformat using "==" anyways.
621 #+begin_src emacs-lisp
622   (use-package aggressive-indent
623     :config (global-aggressive-indent-mode))
624 #+end_src
625 ** Spell checking
626 Spell check in text mode, and in prog-mode comments.
627 #+begin_src emacs-lisp
628   (dolist (hook '(text-mode-hook))
629     (add-hook hook (lambda () (flyspell-mode))))
630   (dolist (hook '(change-log-mode-hook log-edit-mode-hook))
631     (add-hook hook (lambda () (flyspell-mode -1))))
632   (add-hook 'prog-mode (lambda () (flyspell-prog mode)))
633   (setq ispell-silently-savep t)
634 #+end_src
635 ** Sane tab width
636 #+begin_src emacs-lisp
637   (setq-default tab-width 2)
638 #+end_src
639 ** Save place
640 Opens file where you left it.
641 #+begin_src emacs-lisp
642   (save-place-mode)
643 #+end_src
644 ** Writing mode
645 Distraction free writing a la junegunn/goyo.
646 #+begin_src emacs-lisp
647   (use-package olivetti
648     :bind ("C-c o" . olivetti-mode))
649 #+end_src
650 ** Abbreviations
651 Abbreviate things! I just use this for things like my email address and copyright notice.
652 #+begin_src emacs-lisp
653   (setq abbrev-file-name "~/.emacs.d/abbrevs.el")
654   (setq save-abbrevs 'silent)
655   (setq-default abbrev-mode t)
656 #+end_src
657 ** TRAMP
658 #+begin_src emacs-lisp
659   (setq tramp-default-method "ssh")
660 #+end_src
661 ** Follow version controlled symlinks
662 #+begin_src emacs-lisp
663   (setq vc-follow-symlinks t)
664 #+end_src
665 ** Open file as root
666 #+begin_src emacs-lisp
667   (defun doas-edit (&optional arg)
668     "Edit currently visited file as root.
669
670     With a prefix ARG prompt for a file to visit.
671     Will also prompt for a file to visit if current
672     buffer is not visiting a file.
673
674     Modified from Emacs Redux."
675     (interactive "P")
676     (if (or arg (not buffer-file-name))
677         (find-file (concat "/doas:root@localhost:"
678                            (ido-read-file-name "Find file(as root): ")))
679       (find-alternate-file (concat "/doas:root@localhost:" buffer-file-name))))
680
681     (global-set-key (kbd "C-x C-r") #'doas-edit)
682 #+end_src
683 ** Markdown mode
684 #+begin_src emacs-lisp
685   (use-package markdown-mode)
686 #+end_src
687 * Keybindings
688 ** Switch windows
689 #+begin_src emacs-lisp
690   (use-package ace-window
691     :bind ("M-o" . ace-window))
692 #+end_src
693 ** Kill current buffer
694 Makes "C-x k" binding faster.
695 #+begin_src emacs-lisp
696   (substitute-key-definition 'kill-buffer 'kill-buffer-and-window global-map)
697 #+end_src
698 * Other settings
699 ** OpenSCAD syntax
700 #+begin_src emacs-lisp
701   (use-package scad-mode)
702 #+end_src
703 ** Control backup and lock files
704 Stop backup files from spewing everywhere.
705 #+begin_src emacs-lisp
706   (setq backup-directory-alist `(("." . "~/.emacs.d/backups"))
707         create-lockfiles nil)
708 #+end_src
709 ** Make yes/no easier
710 #+begin_src emacs-lisp
711   (defalias 'yes-or-no-p 'y-or-n-p)
712 #+end_src
713 ** Move customize file
714 No more clogging up init.el.
715 #+begin_src emacs-lisp
716   (setq custom-file "~/.emacs.d/custom.el")
717   (load custom-file)
718 #+end_src
719 ** Better help
720 #+begin_src emacs-lisp
721   (use-package helpful
722     :commands (helpful-callable helpful-variable helpful-command helpful-key)
723     :custom
724     (counsel-describe-function-function #'helpful-callable)
725     (counsel-describe-variable-function #'helpful-variable)
726     :bind
727     ([remap describe-function] . counsel-describe-function)
728     ([remap describe-command] . helpful-command)
729     ([remap describe-variable] . counsel-describe-variable)
730     ([remap describe-key] . helpful-key))
731 #+end_src
732 ** GPG
733 #+begin_src emacs-lisp
734   (use-package epa-file
735     :straight (:type built-in)
736     :custom
737     (epa-file-select-keys nil)
738     (epa-file-encrypt-to '("me@armaanb.net"))
739     (password-cache-expiry (* 60 15)))
740
741   (use-package pinentry
742     :config (pinentry-start))
743 #+end_src
744 ** Pastebin
745 #+begin_src emacs-lisp
746   (use-package 0x0
747     :straight (0x0 :type git :repo "https://git.sr.ht/~zge/nullpointer-emacs")
748     :custom (0x0-default-service 'envs))
749 #+end_src
750 ** Automatically clean buffers
751 Automatically close unused buffers (except those of Circe) at midnight.
752 #+begin_src emacs-lisp
753   (midnight-mode)
754   (add-to-list 'clean-buffer-list-kill-never-regexps (lambda (buffer-name)
755                                                        (with-current-buffer buffer-name
756                                                          (derived-mode-p 'lui-mode))))
757 #+end_src
758 * Tangles
759 ** Spectrwm
760 Spectrwm is a really awesome window manager! Would highly recommend.
761 *** General settings
762 #+begin_src conf :tangle ~/.spectrwm.conf
763   workspace_limit = 5
764   warp_pointer = 1
765   modkey = Mod4
766   autorun = ws[1]:/home/armaa/Code/scripts/autostart
767 #+end_src
768 *** Bar
769 Disable the bar by default (it can still be brought back up with MOD+b). The font just needs to be set to something that you have installed, otherwise spectrwm won't launch.
770 #+begin_src conf :tangle ~/.spectrwm.conf
771   bar_enabled = 0
772   bar_font = xos4 JetBrains Mono:pixelsize=14:antialias=true # any installed font
773 #+end_src
774 *** Keybindings
775 I'm not a huge fan of how spectrwm handles keybindings, probably my biggest gripe with it.
776 **** WM actions
777 #+begin_src conf :tangle ~/.spectrwm.conf
778   program[term] = st -e tmux
779   program[screenshot_all] = flameshot gui
780   program[notif] = /home/armaa/Code/scripts/setter status
781   program[pass] = /home/armaa/Code/scripts/passmenu
782
783   bind[notif] = MOD+n
784   bind[pass] = MOD+Shift+p
785 #+end_src
786 **** Media keys
787 #+begin_src conf :tangle ~/.spectrwm.conf
788   program[paup] = /home/armaa/Code/scripts/setter audio +5
789   program[padown] = /home/armaa/Code/scripts/setter audio -5
790   program[pamute] = /home/armaa/Code/scripts/setter audio
791   program[brigup] = /home/armaa/Code/scripts/setter brightness +10%
792   program[brigdown] = /home/armaa/Code/scripts/setter brightness 10%-
793   program[next] = playerctl next
794   program[prev] = playerctl previous
795   program[pause] = playerctl play-pause
796
797   bind[padown] = XF86AudioLowerVolume
798   bind[paup] = XF86AudioRaiseVolume
799   bind[pamute] = XF86AudioMute
800   bind[brigdown] = XF86MonBrightnessDown
801   bind[brigup] = XF86MonBrightnessUp
802   bind[pause] = XF86AudioPlay
803   bind[next] = XF86AudioNext
804   bind[prev] = XF86AudioPrev
805 #+end_src
806 **** HJKL
807 #+begin_src conf :tangle ~/.spectrwm.conf
808   program[h] = xdotool keyup h key --clearmodifiers Left
809   program[j] = xdotool keyup j key --clearmodifiers Down
810   program[k] = xdotool keyup k key --clearmodifiers Up
811   program[l] = xdotool keyup l key --clearmodifiers Right
812
813   bind[h] = MOD + Control + h
814   bind[j] = MOD + Control + j
815   bind[k] = MOD + Control + k
816   bind[l] = MOD + Control + l
817 #+end_src
818 **** Programs
819 #+begin_src conf :tangle ~/.spectrwm.conf
820   program[email] = emacsclient -ce "(mu4e)"
821   program[irc] = emacsclient -ce '(acheam-irc)'
822   program[rss] = emacsclient -ce '(elfeed)'
823   program[calendar] = emacsclient -ce '(acheam-calendar)'
824   program[calc] = emacsclient -ce '(progn (calc) (windmove-up) (delete-window))'
825   program[firefox] = firefox
826   program[emacs] = emacsclient -c
827
828   bind[email] = MOD+Control+1
829   bind[irc] = MOD+Control+2
830   bind[rss] = MOD+Control+3
831   bind[calendar] = MOD+Control+4
832   bind[calc] = MOD+Control+5
833   bind[firefox] = MOD+Control+0
834   bind[emacs] = MOD+Control+Return
835 #+end_src
836 *** Quirks
837 Float some specific programs by default.
838 #+begin_src conf :tangle ~/.spectrwm.conf
839   quirk[Castle Menu] = FLOAT
840   quirk[momen] = FLOAT
841 #+end_src
842 ** Ash
843 *** Options
844 Use the vi editing mode. I still haven't found a good way to show visual feedback of the current mode. Ideally the cursor would change to a beam when in insert mode, and a box when in normal mode.
845 #+begin_src conf :tangle ~/.config/ash/ashrc
846   set -o vi
847 #+end_src
848 *** Functions
849 **** Finger
850 #+begin_src shell :tangle ~/.config/ash/ashrc
851   finger() {
852       user=$(echo "$1" | cut -f 1 -d '@')
853       host=$(echo "$1" | cut -f 2 -d '@')
854       echo $user | nc "$host" 79
855   }
856 #+end_src
857 **** Upload to ftp.armaanb.net
858 #+begin_src shell :tangle ~/.config/ash/ashrc
859   _uprint() {
860       echo "https://l.armaanb.net/$(basename "$1")" | tee /dev/tty | xclip -sel c
861   }
862
863   _uup() {
864       rsync "$1" "root@armaanb.net:/var/ftp/pub/$2" --chmod 644
865   }
866
867   ufile() {
868       _uup "$1" "$2"
869       _uprint "$1"
870   }
871
872   uclip() {
873       tmp=$(mktemp)
874       xclip -o -sel c >> "$tmp"
875       basetmp=$(echo "$tmp" | tail -c +5)
876       _uup "$tmp" "$basetmp"
877       _uprint "$basetmp"
878       rm -f "$tmp"
879   }
880 #+end_src
881 *** Exports
882 #+begin_src shell :tangle ~/.config/ash/ashrc
883   export EDITOR="emacsclient -c"
884   export VISUAL="$EDITOR"
885   export TERM=xterm-256color # for compatability
886
887   export GPG_TTY="$(tty)"
888   export MANPAGER='nvim +Man!'
889   export PAGER='less'
890
891   export GTK_USE_PORTAL=1
892
893   export PATH="/home/armaa/.local/bin:$PATH" # prioritize .local/bin
894   export PATH="/home/armaa/Code/scripts:$PATH" # prioritize my scripts
895   export PATH="/home/armaa/Code/scripts/bin:$PATH" # prioritize my bins
896   export PATH="$PATH:/home/armaa/.cargo/bin"
897   export PATH="$PATH:/home/armaa/.local/share/gem/ruby/2.7.0/bin"
898   export PATH="$PATH:/usr/sbin"
899   export PATH="$PATH:/opt/FreeTube/freetube"
900
901   export LC_ALL="en_US.UTF-8"
902   export LC_CTYPE="en_US.UTF-8"
903   export LANGUAGE="en_US.UTF-8"
904
905   export KISS_PATH="/home/armaa/Virtual/kiss/home/armaa/kiss-repo"
906   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/core"
907   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/extra"
908   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/xorg"
909   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/testing"
910   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-community/community"
911   export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"
912 #+end_src
913 *** Aliases
914 **** SSH
915 #+begin_src shell :tangle ~/.config/ash/ashrc
916   alias bhoji-drop='ssh -p 23 root@armaanb.net'
917   alias irc='ssh root@armaanb.net -t abduco -A irc catgirl freenode'
918   alias union='ssh 192.168.1.18'
919   alias mine='ssh -p 23 root@pickupserver.cc'
920   alias tcf='ssh root@204.48.23.68'
921   alias ngmun='ssh root@157.245.89.25'
922   alias prox='ssh root@192.168.1.224'
923   alias ncq='ssh root@143.198.123.17'
924   alias envs='ssh acheam@envs.net'
925 #+end_src
926 **** File management
927 #+begin_src shell :tangle ~/.config/ash/ashrc
928   alias ls='ls -lh --group-directories-first'
929   alias la='ls -A'
930   alias df='df -h / /boot'
931   alias du='du -h'
932   alias free='free -m'
933   alias cp='cp -riv'
934   alias rm='rm -iv'
935   alias mv='mv -iv'
936   alias ln='ln -v'
937   alias grep='grep -in'
938   alias mkdir='mkdir -pv'
939   alias lanex='java -jar ~/.local/share/lxc/lanxchange.jar'
940   emacs() { $EDITOR "$@" & }
941   alias vim="emacs"
942 #+end_src
943 **** System management
944 #+begin_src shell :tangle ~/.config/ash/ashrc
945   alias crontab='crontab-argh'
946   alias sudo='doas'
947   alias pasu='git -C ~/.password-store push'
948   alias yadu='yadm add -u && yadm commit -m "Updated `date -Iseconds`" && \
949     yadm push'
950 #+end_src
951 **** Networking
952 #+begin_src shell :tangle ~/.config/ash/ashrc
953   alias ping='ping -c 10'
954   alias gps='gpg --keyserver keyserver.ubuntu.com --search-keys'
955   alias gpp='gpg --keyserver keyserver.ubuntu.com --recv-key'
956   alias plan='T=$(mktemp) && \
957           rsync root@armaanb.net:/etc/finger/plan.txt "$T" && \
958           TT=$(mktemp) && \
959           head -n -2 $T > $TT && \
960           /bin/nvim $TT && \
961           echo >> "$TT" && \
962           echo "Last updated: $(date -R)" >> "$TT" && \
963           fold -sw 72 "$TT" > "$T"| \
964           rsync "$T" root@armaanb.net:/etc/finger/plan.txt && \
965           rm -f "$T"'
966 #+end_src
967 **** Virtual machines, chroots
968 #+begin_src shell :tangle ~/.config/ash/ashrc
969   alias ckiss="doas chrooter ~/Virtual/kiss"
970   alias cdebian="doas chrooter ~/Virtual/debian bash"
971   alias cwindows='devour qemu-system-x86_64 \
972     -smp 3 \
973     -cpu host \
974     -enable-kvm \
975     -m 3G \
976     -device VGA,vgamem_mb=64 \
977     -device intel-hda \
978     -device hda-duplex \
979     -net nic \
980     -net user,smb=/home/armaa/Public \
981     -drive format=qcow2,file=/home/armaa/Virtual/windows.qcow2'
982 #+end_src
983 **** Latin
984 #+begin_src shell :tangle ~/.config/ash/ashrc
985   alias words='gen-shell -c "words"'
986   alias words-e='gen-shell -c "words ~E"'
987 #+end_src
988 **** Other
989 #+begin_src shell :tangle ~/.config/ash/ashrc
990   alias bigrandomfile='dd if=/dev/urandom of=1GB-urandom bs=1M count=1024 \
991     iflag=fullblock'
992   alias bigboringfile='dd if=/dev/zero of=1GB-zero bs=1M count=1024 \
993     iflag=fullblock'
994   alias ytmusic="youtube-dl -x --add-metadata  --audio-format aac \
995     --restrict-filenames -o '%(title)s.%(ext)s'"
996   alias bc='bc -l'
997 #+end_src
998 ** MPV
999 Make MPV play a little bit smoother.
1000 #+begin_src conf :tangle ~/.config/mpv/mpv.conf
1001   ytdl-format="bestvideo[height<=?1080]+bestaudio/best"
1002   hwdec=auto-copy
1003 #+end_src
1004 ** Inputrc
1005 This file is used for any GNU Readline programs. I use Emacs editing mode mostly because of one annoyance which is that to clear the screen using ^L, you have to be in normal mode which is a pain. If there is a way to rebind this, I'd love to know!.
1006 #+begin_src conf :tangle ~/.inputrc
1007   set editing-mode emacs
1008 #+end_src
1009 ** Git
1010 *** User
1011 #+begin_src conf :tangle ~/.gitconfig
1012   [user]
1013   name = Armaan Bhojwani
1014   email = me@armaanb.net
1015   signingkey = 0FEB9471E19C49C60CFBEB133C9ED82FFE788E4A
1016 #+end_src
1017 *** Init
1018 #+begin_src conf :tangle ~/.gitconfig
1019   [init]
1020   defaultBranch = main
1021 #+end_src
1022 *** GPG
1023 #+begin_src conf :tangle ~/.gitconfig
1024   [gpg]
1025   program = gpg
1026 #+end_src
1027 *** Sendemail
1028 #+begin_src conf :tangle ~/.gitconfig
1029   [sendemail]
1030   smtpserver = smtp.mailbox.org
1031   smtpuser = me@armaanb.net
1032   smtpencryption = ssl
1033   smtpserverport = 465
1034   confirm = auto
1035 #+end_src
1036 *** Submodule
1037 #+begin_src conf :tangle ~/.gitconfig
1038   [submodule]
1039   recurse = true
1040 #+end_src
1041 *** Aliases
1042 #+begin_src conf :tangle ~/.gitconfig
1043   [alias]
1044   stat = diff --stat
1045   sclone = clone --depth 1
1046   sclean = clean -dfX
1047   a = add
1048   aa = add .
1049   c = commit
1050   quickfix = commit . --amend --no-edit
1051   p = push
1052   subup = submodule update --remote
1053   loc = diff --stat 4b825dc642cb6eb9a060e54bf8d69288fbee4904 # Empty hash
1054   pushnc = push -o skip-ci
1055 #+end_src
1056 *** Commit
1057 #+begin_src conf :tangle ~/.gitconfig
1058   [commit]
1059   gpgsign = true
1060   verbose = true
1061 #+end_src
1062 ** Dunst
1063 Lightweight notification daemon. Eventually I'd like to replace this with something dbus-less.
1064 *** General
1065 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1066   [global]
1067   font = "JetBrains Mono Medium Nerd Font 11"
1068   allow_markup = yes
1069   format = "<b>%s</b>\n%b"
1070   sort = no
1071   indicate_hidden = yes
1072   alignment = center
1073   bounce_freq = 0
1074   show_age_threshold = 60
1075   word_wrap = yes
1076   ignore_newline = no
1077   geometry = "400x5-10+10"
1078   transparency = 0
1079   idle_threshold = 120
1080   monitor = 0
1081   sticky_history = yes
1082   line_height = 0
1083   separator_height = 1
1084   padding = 8
1085   horizontal_padding = 8
1086   max_icon_size = 32
1087   separator_color = "#ffffff"
1088   startup_notification = false
1089 #+end_src
1090 *** Modes
1091 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1092   [frame]
1093   width = 1
1094   color = "#ffffff"
1095
1096   [shortcuts]
1097   close = mod4+c
1098   close_all = mod4+shift+c
1099   history = mod4+ctrl+c
1100
1101   [urgency_low]
1102   background = "#222222"
1103   foreground = "#ffffff"
1104   highlight = "#ffffff"
1105   timeout = 5
1106
1107   [urgency_normal]
1108   background = "#222222"
1109   foreground = "#ffffff"
1110   highlight = "#ffffff"
1111   timeout = 15
1112
1113   [urgency_critical]
1114   background = "#222222"
1115   foreground = "#a60000"
1116   highlight = "#ffffff"
1117   timeout = 0
1118 #+end_src
1119 ** Zathura
1120 The best document reader!
1121 *** Options
1122 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1123   map <C-i> recolor
1124   map <A-b> toggle_statusbar
1125   set selection-clipboard clipboard
1126   set scroll-step 200
1127
1128   set window-title-basename "true"
1129   set selection-clipboard "clipboard"
1130 #+end_src
1131 *** Colors
1132 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1133   set default-bg         "#000000"
1134   set default-fg         "#ffffff"
1135   set render-loading     true
1136   set render-loading-bg  "#000000"
1137   set render-loading-fg  "#ffffff"
1138
1139   set recolor-lightcolor "#000000" # bg
1140   set recolor-darkcolor  "#ffffff" # fg
1141   set recolor            "true"
1142 #+end_src
1143 ** Firefox
1144 Just some basic Firefox CSS. Will probably have to rewrite for the Proton redesign.
1145 *** Swap tab and URL bars
1146 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1147   #nav-bar {
1148       -moz-box-ordinal-group: 1 !important;
1149   }
1150
1151   #PersonalToolbar {
1152       -moz-box-ordinal-group: 2 !important;
1153   }
1154
1155   #titlebar {
1156       -moz-box-ordinal-group: 3 !important;
1157   }
1158 #+end_src
1159 *** Hide URL bar when not focused.
1160 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1161   #navigator-toolbox:not(:focus-within):not(:hover) {
1162       margin-top: -30px;
1163   }
1164
1165   #navigator-toolbox {
1166       transition: 0.1s margin-top ease-out;
1167   }
1168 #+end_src
1169 *** Black screen by default
1170 userChrome.css:
1171 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1172   #main-window,
1173   #browser,
1174   #browser vbox#appcontent tabbrowser,
1175   #content,
1176   #tabbrowser-tabpanels,
1177   #tabbrowser-tabbox,
1178   browser[type="content-primary"],
1179   browser[type="content"] > html,
1180   .browserContainer {
1181       background: black !important;
1182       color: #fff !important;
1183   }
1184 #+end_src
1185
1186 userContent.css:
1187 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userContent.css
1188   @-moz-document url("about:home"), url("about:blank"), url("about:newtab") {
1189       body {
1190           background: black !important;
1191       }
1192   }
1193 #+end_src
1194 ** Xresources
1195 Modus operandi theme. No program I use checks for anything beyond foreground and background, but hey, it can't hurt to have all the colors in there.
1196 #+begin_src conf :tangle ~/.Xresources
1197   ! special
1198   ,*.foreground:   #ffffff
1199   ,*.background:   #000000
1200   ,*.cursorColor:  #ffffff
1201
1202   ! black
1203   ,*.color0:       #000000
1204   ,*.color8:       #555555
1205
1206   ! red
1207   ,*.color1:       #ff8059
1208   ,*.color9:       #ffa0a0
1209
1210   ! green
1211   ,*.color2:       #00fc50
1212   ,*.color10:      #88cf88
1213
1214   ! yellow
1215   ,*.color3:       #eecc00
1216   ,*.color11:      #d2b580
1217
1218   ! blue
1219   ,*.color4:       #29aeff
1220   ,*.color12:      #92baff
1221
1222   ! magenta
1223   ,*.color5:       #feacd0
1224   ,*.color13:      #e0b2d6
1225
1226   ! cyan
1227   ,*.color6:       #00d3d0
1228   ,*.color14:      #a0bfdf
1229
1230   ! white
1231   ,*.color7:       #eeeeee
1232   ,*.color15:      #dddddd
1233 #+end_src
1234 ** Tmux
1235 I use tmux in order to keep my st build light. Still learning how it works.
1236 #+begin_src conf :tangle ~/.tmux.conf
1237   set -g status off
1238   set -g mouse on
1239   set-option -g history-limit 50000
1240   set-window-option -g mode-keys vi
1241   bind-key -T copy-mode-vi 'v' send -X begin-selection
1242   bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
1243 #+end_src
1244 ** GPG
1245 *** Config
1246 #+begin_src conf :tangle ~/.gnupg/gpg.conf
1247   default-key 3C9ED82FFE788E4A
1248   use-agent
1249 #+end_src
1250 *** Agent
1251 #+begin_src conf :tangle ~/.gnupg/gpg-agent.conf
1252   pinentry-program /sbin/pinentry-gnome3
1253   max-cache-ttl 600
1254   default-cache-ttl 600
1255   allow-emacs-pinentry
1256 #+end_src