]> git.armaanb.net Git - config.org.git/blob - config.org
Use anzu properly
[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     :bind ("C-c a" . org-agenda))
239 #+end_src
240 ** Tempo
241 Define templates for lots of common structure elements. Mostly just used within this file.
242 #+begin_src emacs-lisp
243   (use-package org-tempo
244     :after org
245     :straight (:type built-in)
246     :config
247     ;; TODO: There's gotta be a more efficient way to write this
248     (add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp"))
249     (add-to-list 'org-structure-template-alist '("sp" . "src conf :tangle ~/.spectrwm.conf"))
250     (add-to-list 'org-structure-template-alist '("ash" . "src shell :tangle ~/.config/ash/ashrc"))
251     (add-to-list 'org-structure-template-alist '("pi" . "src conf :tangle ~/.config/picom/picom.conf"))
252     (add-to-list 'org-structure-template-alist '("git" . "src conf :tangle ~/.gitconfig"))
253     (add-to-list 'org-structure-template-alist '("du" . "src conf :tangle ~/.config/dunst/dunstrc"))
254     (add-to-list 'org-structure-template-alist '("za" . "src conf :tangle ~/.config/zathura/zathurarc"))
255     (add-to-list 'org-structure-template-alist '("ff1" . "src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css"))
256     (add-to-list 'org-structure-template-alist '("ff2" . "src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userContent.css"))
257     (add-to-list 'org-structure-template-alist '("xr" . "src conf :tangle ~/.Xresources"))
258     (add-to-list 'org-structure-template-alist '("tm" . "src conf :tangle ~/.tmux.conf"))
259     (add-to-list 'org-structure-template-alist '("gp" . "src conf :tangle ~/.gnupg/gpg.conf"))
260     (add-to-list 'org-structure-template-alist '("ag" . "src conf :tangle ~/.gnupg/gpg-agent.conf")))
261 #+end_src
262 * Autocompletion
263 ** Ivy
264 A well balanced completion framework.
265 #+begin_src emacs-lisp
266   (use-package ivy
267     :bind (("C-s" . swiper)
268            :map ivy-minibuffer-map
269            ("TAB" . ivy-alt-done)
270            :map ivy-switch-buffer-map
271            ("M-d" . ivy-switch-buffer-kill))
272     :config (ivy-mode))
273 #+end_src
274 ** Ivy-rich
275 #+begin_src emacs-lisp
276   (use-package ivy-rich
277     :after (ivy counsel)
278     :config (ivy-rich-mode))
279 #+end_src
280 ** Counsel
281 Ivy everywhere.
282 #+begin_src emacs-lisp
283   (use-package counsel
284     :bind (("C-M-j" . 'counsel-switch-buffer)
285            :map minibuffer-local-map
286            ("C-r" . 'counsel-minibuffer-history))
287     :custom (counsel-linux-app-format-function #'counsel-linux-app-format-function-name-only)
288     :config (counsel-mode))
289 #+end_src
290 ** Remember frequent commands
291 #+begin_src emacs-lisp
292   (use-package ivy-prescient
293     :after counsel
294     :custom (ivy-prescient-enable-filtering nil)
295     :config
296     (prescient-persist-mode)
297     (ivy-prescient-mode))
298 #+end_src
299 ** Swiper
300 Better search utility.
301 #+begin_src emacs-lisp
302   (use-package swiper)
303 #+end_src
304 * Emacs OS
305 ** RSS
306 Use elfeed for reading RSS. I have another file with all the feeds in it that I'd rather keep private.
307 #+begin_src emacs-lisp
308   (use-package elfeed
309     :bind (("C-c e" . elfeed))
310     :config
311     (load "~/.emacs.d/feeds.el")
312     (add-hook 'elfeed-new-entry-hook
313               (elfeed-make-tagger :feed-url "youtube\\.com"
314                                   :add '(youtube)))
315     :bind (:map elfeed-search-mode-map ("C-c C-o" . 'elfeed-show-visit)))
316
317   (use-package elfeed-goodies
318     :after elfeed
319     :config (elfeed-goodies/setup))
320 #+end_src
321 ** Email
322 Use mu4e for reading emails.
323
324 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.
325
326 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.
327 #+begin_src emacs-lisp
328   (use-package smtpmail
329     :straight (:type built-in))
330   (use-package mu4e
331     :load-path "/usr/share/emacs/site-lisp/mu4e"
332     :straight (:build nil)
333     :bind (("C-c m" . mu4e))
334     :config
335     (setq user-full-name "Armaan Bhojwani"
336           smtpmail-local-domain "armaanb.net"
337           smtpmail-stream-type 'ssl
338           smtpmail-smtp-service '465
339           mu4e-change-filenames-when-moving t
340           mu4e-get-mail-command "offlineimap -q"
341           message-citation-line-format "On %a %d %b %Y at %R, %f wrote:\n"
342           message-citation-line-function 'message-insert-formatted-citation-line
343           mu4e-completing-read-function 'ivy-completing-read
344           mu4e-confirm-quit nil
345           mu4e-view-use-gnus t
346           mail-user-agent 'mu4e-user-agent
347           mail-context-policy 'pick-first
348           mu4e-contexts
349           `( ,(make-mu4e-context
350                :name "school"
351                :enter-func (lambda () (mu4e-message "Entering school context"))
352                :leave-func (lambda () (mu4e-message "Leaving school context"))
353                :match-func (lambda (msg)
354                              (when msg
355                                (string-match-p "^/school" (mu4e-message-field msg :maildir))))
356                :vars '((user-mail-address . "abhojwani22@nobles.edu")
357                        (mu4e-sent-folder . "/school/Sent")
358                        (mu4e-drafts-folder . "/school/Drafts")
359                        (mu4e-trash-folder . "/school/Trash")
360                        (mu4e-refile-folder . "/school/Archive")
361                        (message-cite-reply-position . above)
362                        (user-mail-address . "abhojwani22@nobles.edu")
363                        (smtpmail-smtp-user . "abhojwani22@nobles.edu")
364                        (smtpmail-smtp-server . "smtp.gmail.com")))
365              ,(make-mu4e-context
366                :name "personal"
367                :enter-func (lambda () (mu4e-message "Entering personal context"))
368                :leave-func (lambda () (mu4e-message "Leaving personal context"))
369                :match-func (lambda (msg)
370                              (when msg
371                                (string-match-p "^/personal" (mu4e-message-field msg :maildir))))
372                :vars '((mu4e-sent-folder . "/personal/Sent")
373                        (mu4e-drafts-folder . "/personal/Drafts")
374                        (mu4e-trash-folder . "/personal/Trash")
375                        (mu4e-refile-folder . "/personal/Archive")
376                        (user-mail-address . "me@armaanb.net")
377                        (message-cite-reply-position . below)
378                        (smtpmail-smtp-user . "me@armaanb.net")
379                        (smtpmail-smtp-server . "smtp.mailbox.org")))))
380     (add-to-list 'mu4e-bookmarks
381                  '(:name "Unified inbox"
382                          :query "maildir:\"/personal/INBOX\" or maildir:\"/school/INBOX\""
383                          :key ?b))
384     :hook ((mu4e-compose-mode . flyspell-mode)
385            (mu4e-compose-mode . auto-fill-mode)
386            (mu4e-view-mode-hook . turn-on-visual-line-mode)
387            (message-send-hook . (lambda () (unless (yes-or-no-p "Ya sure 'bout that?")
388                                              (signal 'quit nil))))))
389 #+end_src
390 Discourage Gnus from displaying HTML emails
391 #+begin_src emacs-lisp
392   (with-eval-after-load "mm-decode"
393     (add-to-list 'mm-discouraged-alternatives "text/html")
394     (add-to-list 'mm-discouraged-alternatives "text/richtext"))
395 #+end_src
396 ** Default browser
397 Set EWW as default browser except for multimedia which should open in MPV.
398 #+begin_src emacs-lisp
399   (defun browse-url-mpv (url &optional new-window)
400     "Open URL in MPV."
401     (interactive)
402     (start-process "mpv" "*mpv*" "mpv" url))
403
404   (setq browse-url-handlers
405         (quote
406          (("youtu\\.?be" . browse-url-mpv)
407           ("peertube.*" . browse-url-mpv)
408           ("vid.*" . browse-url-mpv)
409           ("vid.*" . browse-url-mpv)
410           ("*.mp4" . browse-url-mpv)
411           ("*.mp3" . browse-url-mpv)
412           ("*.ogg" . browse-url-mpv)
413           ("." . eww-browse-url)
414           )))
415 #+end_src
416 ** EWW
417 Some EWW enhancements.
418 *** Give buffer a useful name
419 #+begin_src emacs-lisp
420   ;; From https://protesilaos.com/dotemacs/
421   (defun prot-eww--rename-buffer ()
422     "Rename EWW buffer using page title or URL.
423         To be used by `eww-after-render-hook'."
424     (let ((name (if (eq "" (plist-get eww-data :title))
425                     (plist-get eww-data :url)
426                   (plist-get eww-data :title))))
427       (rename-buffer (format "*%s # eww*" name) t)))
428
429   (use-package eww
430     :straight (:type built-in)
431     :bind (("C-c w" . eww))
432     :hook (eww-after-render-hook prot-eww--rename-buffer))
433 #+end_src
434 *** Keybinding
435 #+begin_src emacs-lisp
436   (global-set-key (kbd "C-c w") 'eww)
437 #+end_src
438 ** IRC
439 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.
440 #+begin_src emacs-lisp
441   (defun fetch-password (&rest params)
442     (require 'auth-source)
443     (let ((match (car (apply 'auth-source-search params))))
444       (if match
445           (let ((secret (plist-get match :secret)))
446             (if (functionp secret)
447                 (funcall secret)
448               secret))
449         (error "Password not found for %S" params))))
450
451   (use-package circe
452     :config
453     (enable-lui-track)
454     (enable-circe-color-nicks)
455     (setq circe-network-defaults '(("libera"
456                                     :host "irc.armaanb.net"
457                                     :nick "emacs"
458                                     :user "emacs"
459                                     :use-tls t
460                                     :port 6698
461                                     :pass (lambda (null) (fetch-password
462                                                           :login "emacs"
463                                                           :machine "irc.armaanb.net"
464                                                           :port 6698)))
465                                    ("oftc"
466                                     :host "irc.armaanb.net"
467                                     :nick "emacs"
468                                     :user "emacs"
469                                     :use-tls t
470                                     :port 6699
471                                     :pass (lambda (null) (fetch-password
472                                                           :login "emacs"
473                                                           :machine "irc.armaanb.net"
474                                                           :port 6699)))
475                                    ("tilde"
476                                     :host "irc.armaanb.net"
477                                     :nick "emacs"
478                                     :user "emacs"
479                                     :use-tls t
480                                     :port 6696
481                                     :pass (lambda (null) (fetch-password
482                                                           :login "emacs"
483                                                           :machine "irc.armaanb.net"
484                                                           :port 6696)))
485                                    (circe "libera")
486                                    (circe "oftc")
487                                    (circe "tilde")))
488     :custom (circe-default-part-message "goodbye!")
489     :bind (:map circe-mode-map ("C-c C-r" . circe-reconnect-all)))
490 #+end_src
491 ** Calendar
492 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.
493 #+begin_src emacs-lisp
494   (defun sync-calendar ()
495     "Sync calendars with vdirsyncer"
496     (interactive)
497     (async-shell-command "vdirsyncer sync"))
498
499   (use-package calfw
500     :bind (:map cfw:calendar-mode-map ("C-S-u" . sync-calendar)))
501   (use-package calfw-ical)
502   (use-package calfw-org)
503
504   (defun acheam-calendar ()
505     "Open calendars"
506     (interactive)
507     (cfw:open-calendar-buffer
508      :contents-sources (list
509                         (cfw:org-create-source "Green")
510                         (cfw:ical-create-source
511                          "Personal"
512                          "~/.local/share/vdirsyncer/mailbox/Y2FsOi8vMC8zMQ.ics"
513                          "Gray")
514                         (cfw:ical-create-source
515                          "Personal"
516                          "~/.local/share/vdirsyncer/mailbox/Y2FsOi8vMC8zMQ.ics"
517                          "Red")
518                         (cfw:ical-create-source
519                          "School"
520                          "~/.local/share/vdirsyncer/school/abhojwani22@nobles.edu.ics"
521                          "Cyan"))
522      :view 'week))
523
524   (global-set-key (kbd "C-c c") 'acheam-calendar)
525 #+end_src
526 ** PDF reader
527 #+begin_src emacs-lisp
528   (use-package pdf-tools
529     :hook (pdf-view-mode . pdf-view-midnight-minor-mode))
530 #+end_src
531 * Emacs IDE
532 ** Python formatting
533 #+begin_src emacs-lisp
534   (use-package blacken
535     :hook (python-mode . blacken-mode)
536     :custom (blacken-line-length 79))
537
538 #+end_src
539 ** Strip trailing whitespace
540 #+begin_src emacs-lisp
541   (use-package ws-butler
542     :config (ws-butler-global-mode))
543 #+end_src
544 ** Flycheck
545 Automatic linting. I need to look into configuring this more.
546 #+begin_src emacs-lisp
547   (use-package flycheck
548     :config (global-flycheck-mode))
549 #+end_src
550 ** Project management
551 I never use this, but apparently its very powerful. Another item on my todo list.
552 #+begin_src emacs-lisp
553   (use-package projectile
554     :config (projectile-mode)
555     :custom ((projectile-completion-system 'ivy))
556     :bind-keymap
557     ("C-c p" . projectile-command-map)
558     :init
559     (when (file-directory-p "~/Code")
560       (setq projectile-project-search-path '("~/Code")))
561     (setq projectile-switch-project-action #'projectile-dired))
562
563   (use-package counsel-projectile
564     :after projectile
565     :config (counsel-projectile-mode))
566 #+end_src
567 ** Dired
568 The best file manager!
569 #+begin_src emacs-lisp
570   (use-package dired
571     :straight (:type built-in)
572     :commands (dired dired-jump)
573     :custom ((dired-listing-switches "-agho --group-directories-first"))
574     :config (evil-collection-define-key 'normal 'dired-mode-map
575               "h" 'dired-single-up-directory
576               "l" 'dired-single-buffer))
577
578   (use-package dired-single
579     :commands (dired dired-jump))
580
581   (use-package dired-open
582     :commands (dired dired-jump)
583     :custom (dired-open-extensions '(("png" . "feh")
584                                      ("mkv" . "mpv"))))
585
586   (use-package dired-hide-dotfiles
587     :hook (dired-mode . dired-hide-dotfiles-mode)
588     :config
589     (evil-collection-define-key 'normal 'dired-mode-map
590       "H" 'dired-hide-dotfiles-mode))
591 #+end_src
592 ** Git
593 *** Magit
594 **** TODO Write a command that commits hunk, skipping staging step.
595 A very good Git interface.
596 #+begin_src emacs-lisp
597   (use-package magit)
598 #+end_src
599 *** Email
600 #+begin_src emacs-lisp
601   (use-package piem)
602   (use-package git-email
603     :straight (git-email :repo "https://git.sr.ht/~yoctocell/git-email")
604     :config (git-email-piem-mode))
605 #+end_src
606 * General text editing
607 ** Indentation
608 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.
609 #+begin_src emacs-lisp
610   (use-package aggressive-indent
611     :config (global-aggressive-indent-mode))
612 #+end_src
613 ** Spell checking
614 Spell check in text mode, and in prog-mode comments.
615 #+begin_src emacs-lisp
616   (dolist (hook '(text-mode-hook))
617     (add-hook hook (lambda () (flyspell-mode))))
618   (dolist (hook '(change-log-mode-hook log-edit-mode-hook))
619     (add-hook hook (lambda () (flyspell-mode -1))))
620   (add-hook 'prog-mode (lambda () (flyspell-prog mode)))
621   (setq ispell-silently-savep t)
622 #+end_src
623 ** Sane tab width
624 #+begin_src emacs-lisp
625   (setq-default tab-width 2)
626 #+end_src
627 ** Save place
628 Opens file where you left it.
629 #+begin_src emacs-lisp
630   (save-place-mode)
631 #+end_src
632 ** Writing mode
633 Distraction free writing a la junegunn/goyo.
634 #+begin_src emacs-lisp
635   (use-package olivetti
636     :bind ("C-c o" . olivetti-mode))
637 #+end_src
638 ** Abbreviations
639 Abbreviate things! I just use this for things like my email address and copyright notice.
640 #+begin_src emacs-lisp
641   (setq abbrev-file-name "~/.emacs.d/abbrevs.el")
642   (setq save-abbrevs 'silent)
643   (setq-default abbrev-mode t)
644 #+end_src
645 ** TRAMP
646 #+begin_src emacs-lisp
647   (setq tramp-default-method "ssh")
648 #+end_src
649 ** Follow version controlled symlinks
650 #+begin_src emacs-lisp
651   (setq vc-follow-symlinks t)
652 #+end_src
653 ** Open file as root
654 #+begin_src emacs-lisp
655   (defun doas-edit (&optional arg)
656     "Edit currently visited file as root.
657
658     With a prefix ARG prompt for a file to visit.
659     Will also prompt for a file to visit if current
660     buffer is not visiting a file.
661
662     Modified from Emacs Redux."
663     (interactive "P")
664     (if (or arg (not buffer-file-name))
665         (find-file (concat "/doas:root@localhost:"
666                            (ido-read-file-name "Find file(as root): ")))
667       (find-alternate-file (concat "/doas:root@localhost:" buffer-file-name))))
668
669     (global-set-key (kbd "C-x C-r") #'doas-edit)
670 #+end_src
671 ** Markdown mode
672 #+begin_src emacs-lisp
673   (use-package markdown-mode)
674 #+end_src
675 * Keybindings
676 ** Switch windows
677 #+begin_src emacs-lisp
678   (use-package ace-window
679     :bind ("M-o" . ace-window))
680 #+end_src
681 ** Kill current buffer
682 Makes "C-x k" binding faster.
683 #+begin_src emacs-lisp
684   (substitute-key-definition 'kill-buffer 'kill-buffer-and-window global-map)
685 #+end_src
686 * Other settings
687 ** OpenSCAD syntax
688 #+begin_src emacs-lisp
689   (use-package scad-mode)
690 #+end_src
691 ** Control backup and lock files
692 Stop backup files from spewing everywhere.
693 #+begin_src emacs-lisp
694   (setq backup-directory-alist `(("." . "~/.emacs.d/backups"))
695         create-lockfiles nil)
696 #+end_src
697 ** Make yes/no easier
698 #+begin_src emacs-lisp
699   (defalias 'yes-or-no-p 'y-or-n-p)
700 #+end_src
701 ** Move customize file
702 No more clogging up init.el.
703 #+begin_src emacs-lisp
704   (setq custom-file "~/.emacs.d/custom.el")
705   (load custom-file)
706 #+end_src
707 ** Better help
708 #+begin_src emacs-lisp
709   (use-package helpful
710     :commands (helpful-callable helpful-variable helpful-command helpful-key)
711     :custom
712     (counsel-describe-function-function #'helpful-callable)
713     (counsel-describe-variable-function #'helpful-variable)
714     :bind
715     ([remap describe-function] . counsel-describe-function)
716     ([remap describe-command] . helpful-command)
717     ([remap describe-variable] . counsel-describe-variable)
718     ([remap describe-key] . helpful-key))
719 #+end_src
720 ** GPG
721 #+begin_src emacs-lisp
722   (use-package epa-file
723     :straight (:type built-in)
724     :custom
725     (epa-file-select-keys nil)
726     (epa-file-encrypt-to '("me@armaanb.net"))
727     (password-cache-expiry (* 60 15)))
728
729   (use-package pinentry
730     :config (pinentry-start))
731 #+end_src
732 ** Pastebin
733 #+begin_src emacs-lisp
734   (use-package 0x0
735     :straight (0x0 :type git :repo "https://git.sr.ht/~zge/nullpointer-emacs")
736     :custom (0x0-default-service 'envs))
737 #+end_src
738 ** Automatically clean buffers
739 Automatically close unused buffers (except those of Circe) at midnight.
740 #+begin_src emacs-lisp
741   (midnight-mode)
742   (add-to-list 'clean-buffer-list-kill-never-regexps (lambda (buffer-name)
743                                                        (with-current-buffer buffer-name
744                                                          (derived-mode-p 'lui-mode))))
745 #+end_src
746 * Tangles
747 ** Spectrwm
748 Spectrwm is a really awesome window manager! Would highly recommend.
749 *** General settings
750 #+begin_src conf :tangle ~/.spectrwm.conf
751   workspace_limit = 5
752   warp_pointer = 1
753   modkey = Mod4
754   autorun = ws[1]:/home/armaa/Code/scripts/autostart
755 #+end_src
756 *** Bar
757 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.
758 #+begin_src conf :tangle ~/.spectrwm.conf
759   bar_enabled = 0
760   bar_font = xos4 JetBrains Mono:pixelsize=14:antialias=true # any installed font
761 #+end_src
762 *** Keybindings
763 I'm not a huge fan of how spectrwm handles keybindings, probably my biggest gripe with it.
764 **** WM actions
765 #+begin_src conf :tangle ~/.spectrwm.conf
766   program[term] = st -e tmux
767   program[screenshot_all] = flameshot gui
768   program[notif] = /home/armaa/Code/scripts/setter status
769   program[pass] = /home/armaa/Code/scripts/passmenu
770
771   bind[notif] = MOD+n
772   bind[pass] = MOD+Shift+p
773 #+end_src
774 **** Media keys
775 #+begin_src conf :tangle ~/.spectrwm.conf
776   program[paup] = /home/armaa/Code/scripts/setter audio +5
777   program[padown] = /home/armaa/Code/scripts/setter audio -5
778   program[pamute] = /home/armaa/Code/scripts/setter audio
779   program[brigup] = /home/armaa/Code/scripts/setter brightness +10%
780   program[brigdown] = /home/armaa/Code/scripts/setter brightness 10%-
781   program[next] = playerctl next
782   program[prev] = playerctl previous
783   program[pause] = playerctl play-pause
784
785   bind[padown] = XF86AudioLowerVolume
786   bind[paup] = XF86AudioRaiseVolume
787   bind[pamute] = XF86AudioMute
788   bind[brigdown] = XF86MonBrightnessDown
789   bind[brigup] = XF86MonBrightnessUp
790   bind[pause] = XF86AudioPlay
791   bind[next] = XF86AudioNext
792   bind[prev] = XF86AudioPrev
793 #+end_src
794 **** HJKL
795 #+begin_src conf :tangle ~/.spectrwm.conf
796   program[h] = xdotool keyup h key --clearmodifiers Left
797   program[j] = xdotool keyup j key --clearmodifiers Down
798   program[k] = xdotool keyup k key --clearmodifiers Up
799   program[l] = xdotool keyup l key --clearmodifiers Right
800
801   bind[h] = MOD + Control + h
802   bind[j] = MOD + Control + j
803   bind[k] = MOD + Control + k
804   bind[l] = MOD + Control + l
805 #+end_src
806 **** Programs
807 #+begin_src conf :tangle ~/.spectrwm.conf
808   program[email] = emacsclient -ce "(mu4e)"
809   program[irc] = emacsclient -ce '(switch-to-buffer "irc.armaanb.net:6698")'
810   program[rss] = emacsclient -ce '(elfeed)'
811   program[calendar] = emacsclient -ce '(acheam-calendar)'
812   program[calc] = emacsclient -ce '(progn (calc) (windmove-up) (delete-window))'
813   program[firefox] = firefox
814   program[emacs] = emacsclient -c
815
816   bind[email] = MOD+Control+1
817   bind[irc] = MOD+Control+2
818   bind[rss] = MOD+Control+3
819   bind[calendar] = MOD+Control+4
820   bind[calc] = MOD+Control+5
821   bind[firefox] = MOD+Control+0
822   bind[emacs] = MOD+Control+Return
823 #+end_src
824 *** Quirks
825 Float some specific programs by default.
826 #+begin_src conf :tangle ~/.spectrwm.conf
827   quirk[Castle Menu] = FLOAT
828   quirk[momen] = FLOAT
829 #+end_src
830 ** Ash
831 *** Options
832 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.
833 #+begin_src conf :tangle ~/.config/ash/ashrc
834   set -o vi
835 #+end_src
836 *** Functions
837 **** Interact with 0x0
838 #+begin_src shell :tangle ~/.config/ash/ashrc
839   zxz="https://envs.sh"
840   ufile() { curl -F"file=@$1" "$zxz" ; }
841   upb() { curl -F"file=@-;" "$zxz" ; }
842   uurl() { curl -F"url=$1" "$zxz" ; }
843   ushort() { curl -F"shorten=$1" "$zxz" ; }
844   uclip() { xclip -out | curl -F"file=@-;" "$zxz" ; }
845 #+end_src
846 **** Finger
847 #+begin_src shell :tangle ~/.config/ash/ashrc
848   finger() {
849       user=$(echo "$1" | cut -f 1 -d '@')
850       host=$(echo "$1" | cut -f 2 -d '@')
851       echo $user | nc "$host" 79
852   }
853 #+end_src
854 **** Upload to ftp.armaanb.net
855 #+begin_src shell :tangle ~/.config/ash/ashrc
856   pubup() {
857       rsync "$1" "root@armaanb.net:/var/ftp/pub/${2}"
858       echo "https://ftp.armaanb.net/pub/"$(basename "$1") | tee /dev/tty | xclip -sel c
859   }
860 #+end_src
861 *** Exports
862 #+begin_src shell :tangle ~/.config/ash/ashrc
863   export EDITOR="emacsclient -c"
864   export VISUAL="$EDITOR"
865   export TERM=xterm-256color # for compatability
866
867   export GPG_TTY="$(tty)"
868   export MANPAGER='nvim +Man!'
869   export PAGER='less'
870
871   export GTK_USE_PORTAL=1
872
873   export PATH="/home/armaa/.local/bin:$PATH" # prioritize .local/bin
874   export PATH="/home/armaa/Code/scripts:$PATH" # prioritize my scripts
875   export PATH="/home/armaa/Code/scripts/bin:$PATH" # prioritize my bins
876   export PATH="$PATH:/home/armaa/.cargo/bin"
877   export PATH="$PATH:/home/armaa/.local/share/gem/ruby/2.7.0/bin"
878   export PATH="$PATH:/usr/sbin"
879   export PATH="$PATH:/opt/FreeTube/freetube"
880
881   export LC_ALL="en_US.UTF-8"
882   export LC_CTYPE="en_US.UTF-8"
883   export LANGUAGE="en_US.UTF-8"
884
885   export KISS_PATH="/home/armaa/Virtual/kiss/home/armaa/kiss-repo"
886   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/core"
887   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/extra"
888   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/xorg"
889   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/testing"
890   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-community/community"
891   export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"
892 #+end_src
893 *** Aliases
894 **** SSH
895 #+begin_src shell :tangle ~/.config/ash/ashrc
896   alias bhoji-drop='ssh -p 23 root@armaanb.net'
897   alias irc='ssh root@armaanb.net -t abduco -A irc catgirl freenode'
898   alias union='ssh 192.168.1.18'
899   alias mine='ssh -p 23 root@pickupserver.cc'
900   alias tcf='ssh root@204.48.23.68'
901   alias ngmun='ssh root@157.245.89.25'
902   alias prox='ssh root@192.168.1.224'
903   alias ncq='ssh root@143.198.123.17'
904   alias envs='ssh acheam@envs.net'
905 #+end_src
906 **** File management
907 #+begin_src shell :tangle ~/.config/ash/ashrc
908   alias ls='ls -lh --group-directories-first'
909   alias la='ls -A'
910   alias df='df -h / /boot'
911   alias du='du -h'
912   alias free='free -m'
913   alias cp='cp -riv'
914   alias rm='rm -iv'
915   alias mv='mv -iv'
916   alias ln='ln -v'
917   alias grep='grep -in'
918   alias mkdir='mkdir -pv'
919   alias lanex='java -jar ~/.local/share/lxc/lanxchange.jar'
920   emacs() { $EDITOR "$@" & }
921   alias vim="emacs"
922 #+end_src
923 **** System management
924 #+begin_src shell :tangle ~/.config/ash/ashrc
925   alias crontab='crontab-argh'
926   alias sudo='doas'
927   alias pasu='git -C ~/.password-store push'
928   alias yadu='yadm add -u && yadm commit -m "Updated `date -Iseconds`" && \
929     yadm push'
930 #+end_src
931 **** Networking
932 #+begin_src shell :tangle ~/.config/ash/ashrc
933   alias ping='ping -c 10'
934   alias gps='gpg --keyserver keyserver.ubuntu.com --search-keys'
935   alias gpp='gpg --keyserver keyserver.ubuntu.com --recv-key'
936   alias plan='T=$(mktemp) && \
937         rsync root@armaanb.net:/etc/finger/plan.txt "$T" && \
938         TT=$(mktemp) && \
939         head -n -2 $T > $TT && \
940         /bin/nvim $TT && \
941         echo "\nLast updated: $(date -R)" >> "$TT" && \
942         fold -sw 72 "$TT" > "$T"| \
943         rsync "$T" root@armaanb.net:/etc/finger/plan.txt'
944 #+end_src
945 **** Virtual machines, chroots
946 #+begin_src shell :tangle ~/.config/ash/ashrc
947   alias ckiss="doas chrooter ~/Virtual/kiss"
948   alias cdebian="doas chrooter ~/Virtual/debian bash"
949   alias cwindows='devour qemu-system-x86_64 \
950     -smp 3 \
951     -cpu host \
952     -enable-kvm \
953     -m 3G \
954     -device VGA,vgamem_mb=64 \
955     -device intel-hda \
956     -device hda-duplex \
957     -net nic \
958     -net user,smb=/home/armaa/Public \
959     -drive format=qcow2,file=/home/armaa/Virtual/windows.qcow2'
960 #+end_src
961 **** Latin
962 #+begin_src shell :tangle ~/.config/ash/ashrc
963   alias words='gen-shell -c "words"'
964   alias words-e='gen-shell -c "words ~E"'
965 #+end_src
966 **** Other
967 #+begin_src shell :tangle ~/.config/ash/ashrc
968   alias bigrandomfile='dd if=/dev/urandom of=1GB-urandom bs=1M count=1024 \
969     iflag=fullblock'
970   alias bigboringfile='dd if=/dev/zero of=1GB-zero bs=1M count=1024 \
971     iflag=fullblock'
972   alias ytmusic="youtube-dl -x --add-metadata  --audio-format aac \
973     --restrict-filenames -o '%(title)s.%(ext)s'"
974   alias bc='bc -l'
975 #+end_src
976 ** MPV
977 Make MPV play a little bit smoother.
978 #+begin_src conf :tangle ~/.config/mpv/mpv.conf
979   ytdl-format="bestvideo[height<=?1080]+bestaudio/best"
980   hwdec=auto-copy
981 #+end_src
982 ** Inputrc
983 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!.
984 #+begin_src conf :tangle ~/.inputrc
985   set editing-mode emacs
986 #+end_src
987 ** Git
988 *** User
989 #+begin_src conf :tangle ~/.gitconfig
990   [user]
991   name = Armaan Bhojwani
992   email = me@armaanb.net
993   signingkey = 0FEB9471E19C49C60CFBEB133C9ED82FFE788E4A
994 #+end_src
995 *** Init
996 #+begin_src conf :tangle ~/.gitconfig
997   [init]
998   defaultBranch = main
999 #+end_src
1000 *** GPG
1001 #+begin_src conf :tangle ~/.gitconfig
1002   [gpg]
1003   program = gpg
1004 #+end_src
1005 *** Sendemail
1006 #+begin_src conf :tangle ~/.gitconfig
1007   [sendemail]
1008   smtpserver = smtp.mailbox.org
1009   smtpuser = me@armaanb.net
1010   smtpencryption = ssl
1011   smtpserverport = 465
1012   confirm = auto
1013 #+end_src
1014 *** Submodule
1015 #+begin_src conf :tangle ~/.gitconfig
1016   [submodule]
1017   recurse = true
1018 #+end_src
1019 *** Aliases
1020 #+begin_src conf :tangle ~/.gitconfig
1021   [alias]
1022   stat = diff --stat
1023   sclone = clone --depth 1
1024   sclean = clean -dfX
1025   a = add
1026   aa = add .
1027   c = commit
1028   quickfix = commit . --amend --no-edit
1029   p = push
1030   subup = submodule update --remote
1031   loc = diff --stat 4b825dc642cb6eb9a060e54bf8d69288fbee4904 # Empty hash
1032   pushnc = push -o skip-ci
1033 #+end_src
1034 *** Commit
1035 #+begin_src conf :tangle ~/.gitconfig
1036   [commit]
1037   gpgsign = true
1038   verbose = true
1039 #+end_src
1040 ** Dunst
1041 Lightweight notification daemon. Eventually I'd like to replace this with something dbus-less.
1042 *** General
1043 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1044   [global]
1045   font = "JetBrains Mono Medium Nerd Font 11"
1046   allow_markup = yes
1047   format = "<b>%s</b>\n%b"
1048   sort = no
1049   indicate_hidden = yes
1050   alignment = center
1051   bounce_freq = 0
1052   show_age_threshold = 60
1053   word_wrap = yes
1054   ignore_newline = no
1055   geometry = "400x5-10+10"
1056   transparency = 0
1057   idle_threshold = 120
1058   monitor = 0
1059   sticky_history = yes
1060   line_height = 0
1061   separator_height = 1
1062   padding = 8
1063   horizontal_padding = 8
1064   max_icon_size = 32
1065   separator_color = "#ffffff"
1066   startup_notification = false
1067 #+end_src
1068 *** Modes
1069 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1070   [frame]
1071   width = 1
1072   color = "#ffffff"
1073
1074   [shortcuts]
1075   close = mod4+c
1076   close_all = mod4+shift+c
1077   history = mod4+ctrl+c
1078
1079   [urgency_low]
1080   background = "#222222"
1081   foreground = "#ffffff"
1082   highlight = "#ffffff"
1083   timeout = 5
1084
1085   [urgency_normal]
1086   background = "#222222"
1087   foreground = "#ffffff"
1088   highlight = "#ffffff"
1089   timeout = 15
1090
1091   [urgency_critical]
1092   background = "#222222"
1093   foreground = "#a60000"
1094   highlight = "#ffffff"
1095   timeout = 0
1096 #+end_src
1097 ** Zathura
1098 The best document reader!
1099 *** Options
1100 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1101   map <C-i> recolor
1102   map <A-b> toggle_statusbar
1103   set selection-clipboard clipboard
1104   set scroll-step 200
1105
1106   set window-title-basename "true"
1107   set selection-clipboard "clipboard"
1108 #+end_src
1109 *** Colors
1110 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1111   set default-bg         "#000000"
1112   set default-fg         "#ffffff"
1113   set render-loading     true
1114   set render-loading-bg  "#000000"
1115   set render-loading-fg  "#ffffff"
1116
1117   set recolor-lightcolor "#000000" # bg
1118   set recolor-darkcolor  "#ffffff" # fg
1119   set recolor            "true"
1120 #+end_src
1121 ** Firefox
1122 Just some basic Firefox CSS. Will probably have to rewrite for the Proton redesign.
1123 *** Swap tab and URL bars
1124 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1125   #nav-bar {
1126       -moz-box-ordinal-group: 1 !important;
1127   }
1128
1129   #PersonalToolbar {
1130       -moz-box-ordinal-group: 2 !important;
1131   }
1132
1133   #titlebar {
1134       -moz-box-ordinal-group: 3 !important;
1135   }
1136 #+end_src
1137 *** Hide URL bar when not focused.
1138 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1139   #navigator-toolbox:not(:focus-within):not(:hover) {
1140       margin-top: -30px;
1141   }
1142
1143   #navigator-toolbox {
1144       transition: 0.1s margin-top ease-out;
1145   }
1146 #+end_src
1147 *** Black screen by default
1148 userChrome.css:
1149 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1150   #main-window,
1151   #browser,
1152   #browser vbox#appcontent tabbrowser,
1153   #content,
1154   #tabbrowser-tabpanels,
1155   #tabbrowser-tabbox,
1156   browser[type="content-primary"],
1157   browser[type="content"] > html,
1158   .browserContainer {
1159       background: black !important;
1160       color: #fff !important;
1161   }
1162 #+end_src
1163
1164 userContent.css:
1165 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userContent.css
1166   @-moz-document url("about:home"), url("about:blank"), url("about:newtab") {
1167       body {
1168           background: black !important;
1169       }
1170   }
1171 #+end_src
1172 ** Xresources
1173 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.
1174 #+begin_src conf :tangle ~/.Xresources
1175   ! special
1176   ,*.foreground:   #ffffff
1177   ,*.background:   #000000
1178   ,*.cursorColor:  #ffffff
1179
1180   ! black
1181   ,*.color0:       #000000
1182   ,*.color8:       #555555
1183
1184   ! red
1185   ,*.color1:       #ff8059
1186   ,*.color9:       #ffa0a0
1187
1188   ! green
1189   ,*.color2:       #00fc50
1190   ,*.color10:      #88cf88
1191
1192   ! yellow
1193   ,*.color3:       #eecc00
1194   ,*.color11:      #d2b580
1195
1196   ! blue
1197   ,*.color4:       #29aeff
1198   ,*.color12:      #92baff
1199
1200   ! magenta
1201   ,*.color5:       #feacd0
1202   ,*.color13:      #e0b2d6
1203
1204   ! cyan
1205   ,*.color6:       #00d3d0
1206   ,*.color14:      #a0bfdf
1207
1208   ! white
1209   ,*.color7:       #eeeeee
1210   ,*.color15:      #dddddd
1211 #+end_src
1212 ** Tmux
1213 I use tmux in order to keep my st build light. Still learning how it works.
1214 #+begin_src conf :tangle ~/.tmux.conf
1215   set -g status off
1216   set -g mouse on
1217   set-option -g history-limit 50000
1218   set-window-option -g mode-keys vi
1219   bind-key -T copy-mode-vi 'v' send -X begin-selection
1220   bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
1221 #+end_src
1222 ** GPG
1223 *** Config
1224 #+begin_src conf :tangle ~/.gnupg/gpg.conf
1225   default-key 3C9ED82FFE788E4A
1226   use-agent
1227 #+end_src
1228 *** Agent
1229 #+begin_src conf :tangle ~/.gnupg/gpg-agent.conf
1230   pinentry-program /sbin/pinentry-gnome3
1231   max-cache-ttl 600
1232   default-cache-ttl 600
1233   allow-emacs-pinentry
1234 #+end_src