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