]> git.armaanb.net Git - config.org.git/blob - config.org
Remove non-POSIX and unused aliases/functions
[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 **** Interact with 0x0
841 #+begin_src shell :tangle ~/.config/ash/ashrc
842   zxz="https://envs.sh"
843   ufile() { curl -F"file=@$1" "$zxz" ; }
844   upb() { curl -F"file=@-;" "$zxz" ; }
845   uurl() { curl -F"url=$1" "$zxz" ; }
846   ushort() { curl -F"shorten=$1" "$zxz" ; }
847   uclip() { xclip -out | curl -F"file=@-;" "$zxz" ; }
848 #+end_src
849 **** Finger
850 #+begin_src shell :tangle ~/.config/ash/ashrc
851   finger() {
852       user=$(echo "$1" | cut -f 1 -d '@')
853       host=$(echo "$1" | cut -f 2 -d '@')
854       echo $user | nc "$host" 79
855   }
856 #+end_src
857 **** Upload to ftp.armaanb.net
858 #+begin_src shell :tangle ~/.config/ash/ashrc
859   pubup() {
860       rsync "$1" "root@armaanb.net:/var/ftp/pub/${2}"
861       echo "https://ftp.armaanb.net/pub/"$(basename "$1") | tee /dev/tty | xclip -sel c
862   }
863 #+end_src
864 *** Exports
865 #+begin_src shell :tangle ~/.config/ash/ashrc
866   export EDITOR="emacsclient -c"
867   export VISUAL="$EDITOR"
868   export TERM=xterm-256color # for compatability
869
870   export GPG_TTY="$(tty)"
871   export MANPAGER='nvim +Man!'
872   export PAGER='less'
873
874   export GTK_USE_PORTAL=1
875
876   export PATH="/home/armaa/.local/bin:$PATH" # prioritize .local/bin
877   export PATH="/home/armaa/Code/scripts:$PATH" # prioritize my scripts
878   export PATH="/home/armaa/Code/scripts/bin:$PATH" # prioritize my bins
879   export PATH="$PATH:/home/armaa/.cargo/bin"
880   export PATH="$PATH:/home/armaa/.local/share/gem/ruby/2.7.0/bin"
881   export PATH="$PATH:/usr/sbin"
882   export PATH="$PATH:/opt/FreeTube/freetube"
883
884   export LC_ALL="en_US.UTF-8"
885   export LC_CTYPE="en_US.UTF-8"
886   export LANGUAGE="en_US.UTF-8"
887
888   export KISS_PATH="/home/armaa/Virtual/kiss/home/armaa/kiss-repo"
889   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/core"
890   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/extra"
891   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/xorg"
892   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/testing"
893   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-community/community"
894   export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"
895 #+end_src
896 *** Aliases
897 **** SSH
898 #+begin_src shell :tangle ~/.config/ash/ashrc
899   alias bhoji-drop='ssh -p 23 root@armaanb.net'
900   alias irc='ssh root@armaanb.net -t abduco -A irc catgirl freenode'
901   alias union='ssh 192.168.1.18'
902   alias mine='ssh -p 23 root@pickupserver.cc'
903   alias tcf='ssh root@204.48.23.68'
904   alias ngmun='ssh root@157.245.89.25'
905   alias prox='ssh root@192.168.1.224'
906   alias ncq='ssh root@143.198.123.17'
907   alias envs='ssh acheam@envs.net'
908 #+end_src
909 **** File management
910 #+begin_src shell :tangle ~/.config/ash/ashrc
911   alias ls='ls -lh --group-directories-first'
912   alias la='ls -A'
913   alias df='df -h / /boot'
914   alias du='du -h'
915   alias free='free -m'
916   alias cp='cp -riv'
917   alias rm='rm -iv'
918   alias mv='mv -iv'
919   alias ln='ln -v'
920   alias grep='grep -in'
921   alias mkdir='mkdir -pv'
922   alias lanex='java -jar ~/.local/share/lxc/lanxchange.jar'
923   emacs() { $EDITOR "$@" & }
924   alias vim="emacs"
925 #+end_src
926 **** System management
927 #+begin_src shell :tangle ~/.config/ash/ashrc
928   alias crontab='crontab-argh'
929   alias sudo='doas'
930   alias pasu='git -C ~/.password-store push'
931   alias yadu='yadm add -u && yadm commit -m "Updated `date -Iseconds`" && \
932     yadm push'
933 #+end_src
934 **** Networking
935 #+begin_src shell :tangle ~/.config/ash/ashrc
936   alias ping='ping -c 10'
937   alias gps='gpg --keyserver keyserver.ubuntu.com --search-keys'
938   alias gpp='gpg --keyserver keyserver.ubuntu.com --recv-key'
939   alias plan='T=$(mktemp) && \
940         rsync root@armaanb.net:/etc/finger/plan.txt "$T" && \
941         TT=$(mktemp) && \
942         head -n -2 $T > $TT && \
943         /bin/nvim $TT && \
944         echo "\nLast updated: $(date -R)" >> "$TT" && \
945         fold -sw 72 "$TT" > "$T"| \
946         rsync "$T" root@armaanb.net:/etc/finger/plan.txt'
947 #+end_src
948 **** Virtual machines, chroots
949 #+begin_src shell :tangle ~/.config/ash/ashrc
950   alias ckiss="doas chrooter ~/Virtual/kiss"
951   alias cdebian="doas chrooter ~/Virtual/debian bash"
952   alias cwindows='devour qemu-system-x86_64 \
953     -smp 3 \
954     -cpu host \
955     -enable-kvm \
956     -m 3G \
957     -device VGA,vgamem_mb=64 \
958     -device intel-hda \
959     -device hda-duplex \
960     -net nic \
961     -net user,smb=/home/armaa/Public \
962     -drive format=qcow2,file=/home/armaa/Virtual/windows.qcow2'
963 #+end_src
964 **** Latin
965 #+begin_src shell :tangle ~/.config/ash/ashrc
966   alias words='gen-shell -c "words"'
967   alias words-e='gen-shell -c "words ~E"'
968 #+end_src
969 **** Other
970 #+begin_src shell :tangle ~/.config/ash/ashrc
971   alias bigrandomfile='dd if=/dev/urandom of=1GB-urandom bs=1M count=1024 \
972     iflag=fullblock'
973   alias bigboringfile='dd if=/dev/zero of=1GB-zero bs=1M count=1024 \
974     iflag=fullblock'
975   alias ytmusic="youtube-dl -x --add-metadata  --audio-format aac \
976     --restrict-filenames -o '%(title)s.%(ext)s'"
977   alias bc='bc -l'
978 #+end_src
979 ** MPV
980 Make MPV play a little bit smoother.
981 #+begin_src conf :tangle ~/.config/mpv/mpv.conf
982   ytdl-format="bestvideo[height<=?1080]+bestaudio/best"
983   hwdec=auto-copy
984 #+end_src
985 ** Inputrc
986 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!.
987 #+begin_src conf :tangle ~/.inputrc
988   set editing-mode emacs
989 #+end_src
990 ** Git
991 *** User
992 #+begin_src conf :tangle ~/.gitconfig
993   [user]
994   name = Armaan Bhojwani
995   email = me@armaanb.net
996   signingkey = 0FEB9471E19C49C60CFBEB133C9ED82FFE788E4A
997 #+end_src
998 *** Init
999 #+begin_src conf :tangle ~/.gitconfig
1000   [init]
1001   defaultBranch = main
1002 #+end_src
1003 *** GPG
1004 #+begin_src conf :tangle ~/.gitconfig
1005   [gpg]
1006   program = gpg
1007 #+end_src
1008 *** Sendemail
1009 #+begin_src conf :tangle ~/.gitconfig
1010   [sendemail]
1011   smtpserver = smtp.mailbox.org
1012   smtpuser = me@armaanb.net
1013   smtpencryption = ssl
1014   smtpserverport = 465
1015   confirm = auto
1016 #+end_src
1017 *** Submodule
1018 #+begin_src conf :tangle ~/.gitconfig
1019   [submodule]
1020   recurse = true
1021 #+end_src
1022 *** Aliases
1023 #+begin_src conf :tangle ~/.gitconfig
1024   [alias]
1025   stat = diff --stat
1026   sclone = clone --depth 1
1027   sclean = clean -dfX
1028   a = add
1029   aa = add .
1030   c = commit
1031   quickfix = commit . --amend --no-edit
1032   p = push
1033   subup = submodule update --remote
1034   loc = diff --stat 4b825dc642cb6eb9a060e54bf8d69288fbee4904 # Empty hash
1035   pushnc = push -o skip-ci
1036 #+end_src
1037 *** Commit
1038 #+begin_src conf :tangle ~/.gitconfig
1039   [commit]
1040   gpgsign = true
1041   verbose = true
1042 #+end_src
1043 ** Dunst
1044 Lightweight notification daemon. Eventually I'd like to replace this with something dbus-less.
1045 *** General
1046 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1047   [global]
1048   font = "JetBrains Mono Medium Nerd Font 11"
1049   allow_markup = yes
1050   format = "<b>%s</b>\n%b"
1051   sort = no
1052   indicate_hidden = yes
1053   alignment = center
1054   bounce_freq = 0
1055   show_age_threshold = 60
1056   word_wrap = yes
1057   ignore_newline = no
1058   geometry = "400x5-10+10"
1059   transparency = 0
1060   idle_threshold = 120
1061   monitor = 0
1062   sticky_history = yes
1063   line_height = 0
1064   separator_height = 1
1065   padding = 8
1066   horizontal_padding = 8
1067   max_icon_size = 32
1068   separator_color = "#ffffff"
1069   startup_notification = false
1070 #+end_src
1071 *** Modes
1072 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1073   [frame]
1074   width = 1
1075   color = "#ffffff"
1076
1077   [shortcuts]
1078   close = mod4+c
1079   close_all = mod4+shift+c
1080   history = mod4+ctrl+c
1081
1082   [urgency_low]
1083   background = "#222222"
1084   foreground = "#ffffff"
1085   highlight = "#ffffff"
1086   timeout = 5
1087
1088   [urgency_normal]
1089   background = "#222222"
1090   foreground = "#ffffff"
1091   highlight = "#ffffff"
1092   timeout = 15
1093
1094   [urgency_critical]
1095   background = "#222222"
1096   foreground = "#a60000"
1097   highlight = "#ffffff"
1098   timeout = 0
1099 #+end_src
1100 ** Zathura
1101 The best document reader!
1102 *** Options
1103 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1104   map <C-i> recolor
1105   map <A-b> toggle_statusbar
1106   set selection-clipboard clipboard
1107   set scroll-step 200
1108
1109   set window-title-basename "true"
1110   set selection-clipboard "clipboard"
1111 #+end_src
1112 *** Colors
1113 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1114   set default-bg         "#000000"
1115   set default-fg         "#ffffff"
1116   set render-loading     true
1117   set render-loading-bg  "#000000"
1118   set render-loading-fg  "#ffffff"
1119
1120   set recolor-lightcolor "#000000" # bg
1121   set recolor-darkcolor  "#ffffff" # fg
1122   set recolor            "true"
1123 #+end_src
1124 ** Firefox
1125 Just some basic Firefox CSS. Will probably have to rewrite for the Proton redesign.
1126 *** Swap tab and URL bars
1127 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1128   #nav-bar {
1129       -moz-box-ordinal-group: 1 !important;
1130   }
1131
1132   #PersonalToolbar {
1133       -moz-box-ordinal-group: 2 !important;
1134   }
1135
1136   #titlebar {
1137       -moz-box-ordinal-group: 3 !important;
1138   }
1139 #+end_src
1140 *** Hide URL bar when not focused.
1141 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1142   #navigator-toolbox:not(:focus-within):not(:hover) {
1143       margin-top: -30px;
1144   }
1145
1146   #navigator-toolbox {
1147       transition: 0.1s margin-top ease-out;
1148   }
1149 #+end_src
1150 *** Black screen by default
1151 userChrome.css:
1152 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1153   #main-window,
1154   #browser,
1155   #browser vbox#appcontent tabbrowser,
1156   #content,
1157   #tabbrowser-tabpanels,
1158   #tabbrowser-tabbox,
1159   browser[type="content-primary"],
1160   browser[type="content"] > html,
1161   .browserContainer {
1162       background: black !important;
1163       color: #fff !important;
1164   }
1165 #+end_src
1166
1167 userContent.css:
1168 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userContent.css
1169   @-moz-document url("about:home"), url("about:blank"), url("about:newtab") {
1170       body {
1171           background: black !important;
1172       }
1173   }
1174 #+end_src
1175 ** Xresources
1176 Modus operandi theme. No program I use checks for anything beyond foreground and background, but hey, it can't hurt to have all the colors in there.
1177 #+begin_src conf :tangle ~/.Xresources
1178   ! special
1179   ,*.foreground:   #ffffff
1180   ,*.background:   #000000
1181   ,*.cursorColor:  #ffffff
1182
1183   ! black
1184   ,*.color0:       #000000
1185   ,*.color8:       #555555
1186
1187   ! red
1188   ,*.color1:       #ff8059
1189   ,*.color9:       #ffa0a0
1190
1191   ! green
1192   ,*.color2:       #00fc50
1193   ,*.color10:      #88cf88
1194
1195   ! yellow
1196   ,*.color3:       #eecc00
1197   ,*.color11:      #d2b580
1198
1199   ! blue
1200   ,*.color4:       #29aeff
1201   ,*.color12:      #92baff
1202
1203   ! magenta
1204   ,*.color5:       #feacd0
1205   ,*.color13:      #e0b2d6
1206
1207   ! cyan
1208   ,*.color6:       #00d3d0
1209   ,*.color14:      #a0bfdf
1210
1211   ! white
1212   ,*.color7:       #eeeeee
1213   ,*.color15:      #dddddd
1214 #+end_src
1215 ** Tmux
1216 I use tmux in order to keep my st build light. Still learning how it works.
1217 #+begin_src conf :tangle ~/.tmux.conf
1218   set -g status off
1219   set -g mouse on
1220   set-option -g history-limit 50000
1221   set-window-option -g mode-keys vi
1222   bind-key -T copy-mode-vi 'v' send -X begin-selection
1223   bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
1224 #+end_src
1225 ** GPG
1226 *** Config
1227 #+begin_src conf :tangle ~/.gnupg/gpg.conf
1228   default-key 3C9ED82FFE788E4A
1229   use-agent
1230 #+end_src
1231 *** Agent
1232 #+begin_src conf :tangle ~/.gnupg/gpg-agent.conf
1233   pinentry-program /sbin/pinentry-gnome3
1234   max-cache-ttl 600
1235   default-cache-ttl 600
1236   allow-emacs-pinentry
1237 #+end_src