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