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