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