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