]> git.armaanb.net Git - config.org.git/blob - config.org
Add pdf-tools
[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 ** Keybinding hints
124 When starting a key chord, show possible future steps after 0.3 seconds.
125 #+begin_src emacs-lisp
126   (use-package which-key
127     :config (which-key-mode)
128     :custom (which-key-idle-delay 0.3))
129 #+end_src
130 ** Highlight todo items in comments
131 #+begin_src emacs-lisp
132   (use-package hl-todo
133     :straight (hl-todo :type git :host github :repo "tarsius/hl-todo")
134     :config (global-hl-todo-mode 1))
135 #+end_src
136 ** Blink cursor
137 #+begin_src emacs-lisp
138   (blink-cursor-mode)
139 #+end_src
140 ** Visual line mode
141 Soft wrap words and do operations by visual lines except in programming modes.
142 #+begin_src emacs-lisp
143   (global-visual-line-mode 1)
144   (dolist (hook '(prog-mode-hook
145                   calc-trail-mode-hook
146                   mu4e-headers-mode-hook))
147     (add-hook hook (lambda () (visual-line-mode -1))))
148 #+end_src
149 ** Display number of matches in search
150 #+begin_src emacs-lisp
151   (use-package anzu
152     :config (global-anzu-mode))
153 #+end_src
154 ** Visual bell
155 Invert modeline color instead of audible bell or the standard visual bell.
156 #+begin_src emacs-lisp
157   (setq visible-bell nil
158         ring-bell-function
159         (lambda () (invert-face 'mode-line)
160           (run-with-timer 0.1 nil #'invert-face 'mode-line)))
161 #+end_src
162 * Evil mode
163 ** General
164 #+begin_src emacs-lisp
165   (use-package evil
166     :custom (select-enable-clipboard nil)
167     :config
168     (evil-mode)
169     (fset 'evil-visual-update-x-selection 'ignore) ;; Keep clipboard and register seperate
170     ;; Use visual line motions even outside of visual-line-mode buffers
171     (evil-global-set-key 'motion "j" 'evil-next-visual-line)
172     (evil-global-set-key 'motion "k" 'evil-previous-visual-line)
173     (global-set-key (kbd "<escape>") 'keyboard-escape-quit))
174 #+end_src
175 ** Evil collection
176 Evil bindings for tons of packages.
177 #+begin_src emacs-lisp
178   (use-package evil-collection
179     :after evil
180     :init (evil-collection-init)
181     :custom (evil-collection-setup-minibuffer t))
182 #+end_src
183 ** Surround
184 tpope prevails!
185 #+begin_src emacs-lisp
186   (use-package evil-surround
187     :config (global-evil-surround-mode))
188 #+end_src
189 ** Nerd commenter
190 Makes commenting super easy
191 #+begin_src emacs-lisp
192   (use-package evil-nerd-commenter
193     :bind (:map evil-normal-state-map
194                 ("gc" . evilnc-comment-or-uncomment-lines))
195     :custom (evilnc-invert-comment-line-by-line nil))
196 #+end_src
197 ** Undo redo
198 Fix the oopsies!
199 #+begin_src emacs-lisp
200   (evil-set-undo-system 'undo-redo)
201 #+end_src
202 ** Number incrementing
203 Add back C-a/C-x bindings.
204 #+begin_src emacs-lisp
205   (use-package evil-numbers
206     :straight (evil-numbers :type git :host github :repo "juliapath/evil-numbers")
207     :bind (:map evil-normal-state-map
208                 ("C-M-a" . evil-numbers/inc-at-pt)
209                 ("C-M-x" . evil-numbers/dec-at-pt)))
210 #+end_src
211 ** Evil org
212 #+begin_src emacs-lisp
213   (use-package evil-org
214     :after org
215     :hook (org-mode . evil-org-mode)
216     :config
217     (evil-org-set-key-theme '(textobjects insert navigation shift todo)))
218
219   (use-package evil-org-agenda
220     :straight (:type built-in)
221     :after evil-org
222     :config (evil-org-agenda-set-keys))
223 #+end_src
224 * Org mode
225 ** General
226 #+begin_src emacs-lisp
227   (use-package org
228     :straight (:type built-in)
229     :commands (org-capture org-agenda)
230     :custom
231     (org-ellipsis " ▾")
232     (org-agenda-start-with-log-mode t)
233     (org-agenda-files (quote ("~/Org/tasks.org" "~/Org/break.org")))
234     (org-log-done 'time)
235     (org-log-into-drawer t)
236     (org-src-tab-acts-natively t)
237     (org-src-fontify-natively t)
238     (org-startup-indented t)
239     (org-hide-emphasis-markers t)
240     (org-fontify-whole-block-delimiter-line nil)
241     :bind ("C-c a" . org-agenda))
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     (shell-command "vdirsyncer -vcritical 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 **** Update all packages
841 #+begin_src shell :tangle ~/.config/ash/ashrc
842   color=$(tput setaf 5)
843   reset=$(tput sgr0)
844
845   apu() {
846       doas echo "${color}== upgrading with yay ==${reset}"
847       yay
848       echo ""
849       echo "${color}== checking for pacnew files ==${reset}"
850       doas pacdiff
851       echo
852       echo "${color}== upgrading flatpaks ==${reset}"
853       flatpak update
854       echo ""
855       echo "${color}== updating nvim plugins ==${reset}"
856       nvim +PlugUpdate +PlugUpgrade +qall
857       echo "Updated nvim plugins"
858       echo ""
859       echo "${color}You are entirely up to date!${reset}"
860   }
861 #+end_src
862 **** Clean all packages
863 #+begin_src shell :tangle ~/.config/ash/ashrc
864   apap() {
865       doas echo "${color}== cleaning pacman orphans ==${reset}"
866       (pacman -Qtdq | doas pacman -Rns - 2> /dev/null) || echo "No orphans"
867       echo ""
868       echo "${color}== cleaning flatpaks ==${reset}"
869       flatpak remove --unused
870       echo ""
871       echo "${color}== cleaning nvim plugins ==${reset}"
872       nvim +PlugClean +qall
873       echo "Cleaned nvim plugins"
874       echo ""
875       echo "${color}All orphans cleaned!${reset}"
876   }
877 #+end_src
878 **** Interact with 0x0
879 #+begin_src shell :tangle ~/.config/ash/ashrc
880   zxz="https://envs.sh"
881   ufile() { curl -F"file=@$1" "$zxz" ; }
882   upb() { curl -F"file=@-;" "$zxz" ; }
883   uurl() { curl -F"url=$1" "$zxz" ; }
884   ushort() { curl -F"shorten=$1" "$zxz" ; }
885   uclip() { xclip -out | curl -F"file=@-;" "$zxz" ; }
886 #+end_src
887 **** Finger
888 #+begin_src shell :tangle ~/.config/ash/ashrc
889   finger() {
890       user=$(echo "$1" | cut -f 1 -d '@')
891       host=$(echo "$1" | cut -f 2 -d '@')
892       echo $user | nc "$host" 79
893   }
894 #+end_src
895 **** Upload to ftp.armaanb.net
896 #+begin_src shell :tangle ~/.config/ash/ashrc
897   pubup() {
898       rsync "$1" "root@armaanb.net:/var/ftp/pub/${2}"
899       echo "https://ftp.armaanb.net/pub/"$(basename "$1") | tee /dev/tty | xclip -sel c
900   }
901 #+end_src
902 *** Exports
903 #+begin_src shell :tangle ~/.config/ash/ashrc
904   export EDITOR="emacsclient -c"
905   export VISUAL="$EDITOR"
906   export TERM=xterm-256color # for compatability
907
908   export GPG_TTY="$(tty)"
909   export MANPAGER='nvim +Man!'
910   export PAGER='less'
911
912   export GTK_USE_PORTAL=1
913
914   export PATH="/home/armaa/.local/bin:$PATH" # prioritize .local/bin
915   export PATH="/home/armaa/Code/scripts:$PATH" # prioritize my scripts
916   export PATH="/home/armaa/Code/scripts/bin:$PATH" # prioritize my bins
917   export PATH="$PATH:/home/armaa/.cargo/bin"
918   export PATH="$PATH:/home/armaa/.local/share/gem/ruby/2.7.0/bin"
919   export PATH="$PATH:/usr/sbin"
920   export PATH="$PATH:/opt/FreeTube/freetube"
921
922   export LC_ALL="en_US.UTF-8"
923   export LC_CTYPE="en_US.UTF-8"
924   export LANGUAGE="en_US.UTF-8"
925
926   export KISS_PATH="/home/armaa/Virtual/kiss/home/armaa/kiss-repo"
927   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/core"
928   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/extra"
929   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/xorg"
930   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/testing"
931   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-community/community"
932   export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"
933 #+end_src
934 *** Aliases
935 **** SSH
936 #+begin_src shell :tangle ~/.config/ash/ashrc
937   alias bhoji-drop='ssh -p 23 root@armaanb.net'
938   alias irc='ssh root@armaanb.net -t abduco -A irc catgirl freenode'
939   alias union='ssh 192.168.1.18'
940   alias mine='ssh -p 23 root@pickupserver.cc'
941   alias tcf='ssh root@204.48.23.68'
942   alias ngmun='ssh root@157.245.89.25'
943   alias prox='ssh root@192.168.1.224'
944   alias ncq='ssh root@143.198.123.17'
945   alias envs='ssh acheam@envs.net'
946 #+end_src
947 **** File management
948 #+begin_src shell :tangle ~/.config/ash/ashrc
949   alias ls='ls -lh --group-directories-first'
950   alias la='ls -A'
951   alias df='df -h / /boot'
952   alias du='du -h'
953   alias free='free -h'
954   alias cp='cp -riv'
955   alias rm='rm -iv'
956   alias mv='mv -iv'
957   alias ln='ln -v'
958   alias grep='grep -in --color=auto'
959   alias mkdir='mkdir -pv'
960   alias lanex='java -jar ~/.local/share/lxc/lanxchange.jar'
961   emacs() { $EDITOR "$@" & }
962   alias vim="emacs"
963 #+end_src
964 **** System management
965 #+begin_src shell :tangle ~/.config/ash/ashrc
966   alias crontab='crontab-argh'
967   alias sudo='doas'
968   alias pasu='git -C ~/.password-store push'
969   alias yadu='yadm add -u && yadm commit -m "Updated `date -Iseconds`" && \
970     yadm push'
971 #+end_src
972 **** Networking
973 #+begin_src shell :tangle ~/.config/ash/ashrc
974   alias ping='ping -c 10'
975   alias gps='gpg --keyserver keyserver.ubuntu.com --search-keys'
976   alias gpp='gpg --keyserver keyserver.ubuntu.com --recv-key'
977   alias plan='T=$(mktemp) && \
978         rsync root@armaanb.net:/etc/finger/plan.txt "$T" && \
979         TT=$(mktemp) && \
980         head -n -2 $T > $TT && \
981         /bin/nvim $TT && \
982         echo "\nLast updated: $(date -R)" >> "$TT" && \
983         fold -sw 72 "$TT" > "$T"| \
984         rsync "$T" root@armaanb.net:/etc/finger/plan.txt'
985 #+end_src
986 **** Virtual machines, chroots
987 #+begin_src shell :tangle ~/.config/ash/ashrc
988   alias ckiss="doas chrooter ~/Virtual/kiss"
989   alias cdebian="doas chrooter ~/Virtual/debian bash"
990   alias cwindows='devour qemu-system-x86_64 \
991     -smp 3 \
992     -cpu host \
993     -enable-kvm \
994     -m 3G \
995     -device VGA,vgamem_mb=64 \
996     -device intel-hda \
997     -device hda-duplex \
998     -net nic \
999     -net user,smb=/home/armaa/Public \
1000     -drive format=qcow2,file=/home/armaa/Virtual/windows.qcow2'
1001 #+end_src
1002 **** Python
1003 #+begin_src shell :tangle ~/.config/ash/ashrc
1004   alias pip="python -m pip"
1005   alias black="black -l 79"
1006 #+end_src
1007 **** Latin
1008 #+begin_src shell :tangle ~/.config/ash/ashrc
1009   alias words='gen-shell -c "words"'
1010   alias words-e='gen-shell -c "words ~E"'
1011 #+end_src
1012 **** Devour
1013 #+begin_src shell :tangle ~/.config/ash/ashrc
1014   alias zathura='devour zathura'
1015   alias cad='devour openscad'
1016   alias feh='devour feh'
1017 #+end_src
1018 **** Pacman
1019 #+begin_src shell :tangle ~/.config/ash/ashrc
1020   alias aps='yay -Ss'
1021   alias api='yay -Syu'
1022   alias apii='doas pacman -S'
1023   alias app='yay -Rns'
1024   alias azf='pacman -Q | fzf'
1025   alias favorites='pacman -Qe | cut -d " " -f 1 > ~/Documents/favorites'
1026 #+end_src
1027 **** Other
1028 #+begin_src shell :tangle ~/.config/ash/ashrc
1029   alias bigrandomfile='dd if=/dev/urandom of=1GB-urandom bs=1M count=1024 \
1030     iflag=fullblock status=progress'
1031   alias bigboringfile='dd if=/dev/zero of=1GB-zero bs=1M count=1024 \
1032     iflag=fullblock status=progress'
1033   alias ytmusic="youtube-dl -x --add-metadata  --audio-format aac \
1034     --restrict-filenames -o '%(title)s.%(ext)s'"
1035   alias cal="cal -3 --color=auto"
1036   alias bc='bc -l'
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