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