]> git.armaanb.net Git - config.org.git/blob - config.org
Add email section to git
[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
308     (ivy-prescient-enable-filtering nil)
309     :config
310     (prescient-persist-mode)
311     (ivy-prescient-mode))
312 #+end_src
313 ** Swiper
314 Better search utility.
315 #+begin_src emacs-lisp
316   (use-package swiper)
317 #+end_src
318 * EmacsOS
319 ** RSS
320 Use elfeed for RSS. I have another file with all the feeds in it.
321 #+begin_src emacs-lisp
322   (use-package elfeed
323     :bind (("C-c e" . elfeed))
324     :config
325     (load "~/.emacs.d/feeds.el")
326     (add-hook 'elfeed-new-entry-hook
327               (elfeed-make-tagger :feed-url "youtube\\.com"
328                                   :add '(youtube)))
329     :bind (:map elfeed-search-mode-map ("C-c C-o" . 'elfeed-show-visit)))
330
331   (use-package elfeed-goodies
332     :after elfeed
333     :config (elfeed-goodies/setup))
334 #+end_src
335 ** Email
336 Use mu4e for reading emails.
337
338 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.
339
340 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.
341 #+begin_src emacs-lisp
342   (use-package smtpmail
343     :straight (:type built-in))
344   (use-package mu4e
345     :load-path "/usr/share/emacs/site-lisp/mu4e"
346     :straight (:build nil)
347     :bind (("C-c m" . mu4e))
348     :config
349     (setq user-full-name "Armaan Bhojwani"
350           smtpmail-local-domain "armaanb.net"
351           smtpmail-stream-type 'ssl
352           smtpmail-smtp-service '465
353           mu4e-change-filenames-when-moving t
354           mu4e-get-mail-command "offlineimap -q"
355           message-citation-line-format "On %a %d %b %Y at %R, %f wrote:\n"
356           message-citation-line-function 'message-insert-formatted-citation-line
357           mu4e-completing-read-function 'ivy-completing-read
358           mu4e-confirm-quit nil
359           mail-user-agent 'mu4e-user-agent
360           mu4e-contexts
361           `( ,(make-mu4e-context
362                :name "school"
363                :enter-func (lambda () (mu4e-message "Entering school context"))
364                :leave-func (lambda () (mu4e-message "Leaving school context"))
365                :match-func (lambda (msg)
366                              (when msg
367                                (string-match-p "^/school" (mu4e-message-field msg :maildir))))
368                :vars '((user-mail-address . "abhojwani22@nobles.edu")
369                        (mu4e-sent-folder . "/school/Sent")
370                        (mu4e-drafts-folder . "/school/Drafts")
371                        (mu4e-trash-folder . "/school/Trash")
372                        (mu4e-refile-folder . "/school/Archive")
373                        (message-cite-reply-position . above)
374                        (user-mail-address . "abhojwani22@nobles.edu")
375                        (smtpmail-smtp-user . "abhojwani22@nobles.edu")
376                        (smtpmail-smtp-server . "smtp.gmail.com")))
377              ,(make-mu4e-context
378                :name "personal"
379                :enter-func (lambda () (mu4e-message "Entering personal context"))
380                :leave-func (lambda () (mu4e-message "Leaving personal context"))
381                :match-func (lambda (msg)
382                              (when msg
383                                (string-match-p "^/personal" (mu4e-message-field msg :maildir))))
384                :vars '((mu4e-sent-folder . "/personal/Sent")
385                        (mu4e-drafts-folder . "/personal/Drafts")
386                        (mu4e-trash-folder . "/personal/Trash")
387                        (mu4e-refile-folder . "/personal/Archive")
388                        (user-mail-address . "me@armaanb.net")
389                        (message-cite-reply-position . below)
390                        (smtpmail-smtp-user . "me@armaanb.net")
391                        (smtpmail-smtp-server . "smtp.mailbox.org")))))
392     (add-to-list 'mu4e-bookmarks
393                  '(:name "Unified inbox"
394                          :query "maildir:\"/personal/INBOX\" or maildir:\"/school/INBOX\""
395                          :key ?b))
396     :hook ((mu4e-compose-mode . flyspell-mode)
397            (mu4e-compose-mode . auto-fill-mode)
398            (mu4e-view-mode-hook . turn-on-visual-line-mode)))
399 #+end_src
400 ** Default browser
401 Set EWW as default browser except for videos.
402 #+begin_src emacs-lisp
403   (defun browse-url-mpv (url &optional new-window)
404     "Open URL in MPV."
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           ("." . eww-browse-url)
414           )))
415 #+end_src
416 ** EWW
417 Some EWW enhancements.
418 *** Give buffer a useful name
419 #+begin_src emacs-lisp
420   ;; From https://protesilaos.com/dotemacs/
421   (defun prot-eww--rename-buffer ()
422     "Rename EWW buffer using page title or URL.
423         To be used by `eww-after-render-hook'."
424     (let ((name (if (eq "" (plist-get eww-data :title))
425                     (plist-get eww-data :url)
426                   (plist-get eww-data :title))))
427       (rename-buffer (format "*%s # eww*" name) t)))
428
429   (use-package eww
430     :straight (:type built-in)
431     :bind (("C-c w" . eww))
432     :hook (eww-after-render-hook prot-eww--rename-buffer))
433 #+end_src
434 *** Better entrypoint
435 #+begin_src emacs-lisp
436   ;; From https://protesilaos.com/dotemacs/
437   (defun prot-eww-browse-dwim (url &optional arg)
438     "Visit a URL, maybe from `eww-prompt-history', with completion.
439
440   With optional prefix ARG (\\[universal-argument]) open URL in a
441   new eww buffer.
442
443   If URL does not look like a valid link, run a web query using
444   `eww-search-prefix'.
445
446   When called from an eww buffer, provide the current link as
447   initial input."
448     (interactive
449      (list
450       (completing-read "Query:" eww-prompt-history
451                        nil nil (plist-get eww-data :url) 'eww-prompt-history)
452       current-prefix-arg))
453     (eww url (if arg 4 nil)))
454
455   (global-set-key (kbd "C-c w") 'prot-eww-browse-dwim)
456 #+end_src
457 ** IRC
458 #+begin_src emacs-lisp
459   (use-package erc
460     :straight (:type built-in)
461     :config
462     (load "~/.emacs.d/irc.el")
463     (acheam-irc)
464     (erc-notifications-enable)
465     (erc-smiley-disable))
466
467   (use-package erc-hl-nicks
468     :config (erc-hl-nicks-mode 1))
469 #+end_src
470 ** Emacs Anywhere
471 Use Emacs globally. Use the Emacs daemon and bind a key in your wm to =emacsclient --eval "(emacs-everywhere)"=.
472 #+begin_src emacs-lisp
473   (use-package emacs-everywhere)
474 #+end_src
475 * Emacs IDE
476 ** Code cleanup
477 #+begin_src emacs-lisp
478   (use-package blacken
479     :hook (python-mode . blacken-mode)
480     :config (setq blacken-line-length 79))
481
482   ;; Purge whitespace
483   (use-package ws-butler
484     :config (ws-butler-global-mode))
485 #+end_src
486 ** Flycheck
487 #+begin_src emacs-lisp
488   (use-package flycheck
489     :config (global-flycheck-mode))
490 #+end_src
491 ** Project management
492 #+begin_src emacs-lisp
493   (use-package projectile
494     :config (projectile-mode)
495     :custom ((projectile-completion-system 'ivy))
496     :bind-keymap
497     ("C-c p" . projectile-command-map)
498     :init
499     (when (file-directory-p "~/Code")
500       (setq projectile-project-search-path '("~/Code")))
501     (setq projectile-switch-project-action #'projectile-dired))
502
503   (use-package counsel-projectile
504     :after projectile
505     :config (counsel-projectile-mode))
506 #+end_src
507 ** Dired
508 #+begin_src emacs-lisp
509   (use-package dired
510     :straight (:type built-in)
511     :commands (dired dired-jump)
512     :custom ((dired-listing-switches "-agho --group-directories-first"))
513     :config (evil-collection-define-key 'normal 'dired-mode-map
514               "h" 'dired-single-up-directory
515               "l" 'dired-single-buffer))
516
517   (use-package dired-single
518     :commands (dired dired-jump))
519
520   (use-package dired-open
521     :commands (dired dired-jump)
522     :custom (dired-open-extensions '(("png" . "feh")
523                                      ("mkv" . "mpv"))))
524
525   (use-package dired-hide-dotfiles
526     :hook (dired-mode . dired-hide-dotfiles-mode)
527     :config
528     (evil-collection-define-key 'normal 'dired-mode-map
529       "H" 'dired-hide-dotfiles-mode))
530 #+end_src
531 ** Git
532 *** Magit
533 # TODO: Write a command that commits hunk, skipping staging step.
534 #+begin_src emacs-lisp
535   (use-package magit)
536 #+end_src
537 *** Colored diff in line number area
538 #+begin_src emacs-lisp
539   (use-package diff-hl
540     :straight (diff-hl :type git :host github :repo "dgutov/diff-hl")
541     :hook ((magit-pre-refresh-hook . diff-hl-magit-pre-refresh)
542            (magit-post-refresh-hook . diff-hl-magit-post-refresh))
543     :config (global-diff-hl-mode))
544 #+end_src
545 *** Email
546 #+begin_src emacs-lisp
547   (use-package piem)
548   (use-package git-email
549     :straight (git-email :repo "https://git.sr.ht/~yoctocell/git-email")
550     :config (git-email-piem-mode))
551 #+end_src
552 * General text editing
553 ** Indentation
554 Indent after every change.
555 #+begin_src emacs-lisp
556   (use-package aggressive-indent
557     :config (global-aggressive-indent-mode))
558 #+end_src
559 ** Spell checking
560 Spell check in text mode, and in prog-mode comments.
561 #+begin_src emacs-lisp
562   (dolist (hook '(text-mode-hook))
563     (add-hook hook (lambda () (flyspell-mode))))
564   (dolist (hook '(change-log-mode-hook log-edit-mode-hook))
565     (add-hook hook (lambda () (flyspell-mode -1))))
566   (add-hook 'prog-mode (lambda () (flyspell-prog mode)))
567 #+end_src
568 ** Expand tabs to spaces
569 #+begin_src emacs-lisp
570   (setq-default tab-width 2)
571 #+end_src
572 ** Copy kill ring to clipboard
573 #+begin_src emacs-lisp
574   (setq x-select-enable-clipboard t)
575   (defun copy-kill-ring-to-xorg ()
576     "Copy the current kill ring to the xorg clipboard."
577     (interactive)
578     (x-select-text (current-kill 0)))
579 #+end_src
580 ** Save place
581 Opens file where you left it.
582 #+begin_src emacs-lisp
583   (save-place-mode)
584 #+end_src
585 ** Writing mode
586 Distraction free writing a la junegunn/goyo.
587 #+begin_src emacs-lisp
588   (use-package olivetti
589     :config
590     (evil-leader/set-key "o" 'olivetti-mode))
591 #+end_src
592 ** Abbreviations
593 Abbreviate things!
594 #+begin_src emacs-lisp
595   (setq abbrev-file-name "~/.emacs.d/abbrevs.el")
596   (setq save-abbrevs 'silent)
597   (setq-default abbrev-mode t)
598 #+end_src
599 ** TRAMP
600 #+begin_src emacs-lisp
601   (setq tramp-default-method "ssh")
602 #+end_src
603 ** Don't ask about following symlinks in vc
604 #+begin_src emacs-lisp
605   (setq vc-follow-symlinks t)
606 #+end_src
607 ** Don't ask to save custom dictionary
608 #+begin_src emacs-lisp
609   (setq ispell-silently-savep t)
610 #+end_src
611 * Keybindings
612 ** Switch windows
613 #+begin_src emacs-lisp
614   (use-package ace-window
615     :bind ("M-o" . ace-window))
616 #+end_src
617 ** Kill current buffer
618 Makes "C-x k" binding faster.
619 #+begin_src emacs-lisp
620   (substitute-key-definition 'kill-buffer 'kill-buffer-and-window global-map)
621 #+end_src
622 * Other settings
623 ** OpenSCAD
624 #+begin_src emacs-lisp
625   (use-package scad-mode)
626 #+end_src
627 ** Control backup files
628 Stop backup files from spewing everywhere.
629 #+begin_src emacs-lisp
630   (setq backup-directory-alist `(("." . "~/.emacs.d/backups")))
631 #+end_src
632 ** Make yes/no easier
633 #+begin_src emacs-lisp
634   (defalias 'yes-or-no-p 'y-or-n-p)
635 #+end_src
636 ** Move customize file
637 No more clogging up init.el.
638 #+begin_src emacs-lisp
639   (setq custom-file "~/.emacs.d/custom.el")
640   (load custom-file)
641 #+end_src
642 ** Better help
643 #+begin_src emacs-lisp
644   (use-package helpful
645     :commands (helpful-callable helpful-variable helpful-command helpful-key)
646     :custom
647     (counsel-describe-function-function #'helpful-callable)
648     (counsel-describe-variable-function #'helpful-variable)
649     :bind
650     ([remap describe-function] . counsel-describe-function)
651     ([remap describe-command] . helpful-command)
652     ([remap describe-variable] . counsel-describe-variable)
653     ([remap describe-key] . helpful-key))
654 #+end_src
655 ** GPG
656 #+begin_src emacs-lisp
657   (use-package epa-file
658     :straight (:type built-in)
659     :custom
660     (epa-file-select-keys nil)
661     (epa-file-encrypt-to '("me@armaanb.net"))
662     (password-cache-expiry (* 60 15)))
663
664   (use-package pinentry
665     :config (pinentry-start))
666 #+end_src
667 ** Pastebin
668 #+begin_src emacs-lisp
669   (use-package 0x0
670     :straight (0x0 :type git :repo "https://git.sr.ht/~zge/nullpointer-emacs")
671     :custom (0x0-default-service 'envs)
672     :config (evil-leader/set-key
673               "00" '0x0-upload
674               "0f" '0x0-upload-file
675               "0s" '0x0-upload-string
676               "0c" '0x0-upload-kill-ring
677               "0p" '0x0-upload-popup))
678 #+end_src
679 * Tangles
680 ** Spectrwm
681 *** General settings
682 #+begin_src conf :tangle ~/.spectrwm.conf
683   workspace_limit = 5
684   warp_pointer = 1
685   modkey = Mod4
686   autorun = ws[1]:/home/armaa/Code/scripts/autostart
687 #+end_src
688 *** Bar
689 #+begin_src conf :tangle ~/.spectrwm.conf
690   bar_enabled = 0
691   bar_font = xos4 Fira Code:pixelsize=14:antialias=true # any installed font
692 #+end_src
693 *** Keybindings
694 **** WM actions
695 #+begin_src conf :tangle ~/.spectrwm.conf
696   program[term] = alacritty
697   program[screenshot_all] = flameshot gui
698   program[notif] = /home/armaa/Code/scripts/setter status
699   program[pass] = /home/armaa/Code/scripts/passmenu
700
701   bind[notif] = MOD+n
702   bind[pass] = MOD+Shift+p
703 #+end_src
704 **** Media keys
705 #+begin_src conf :tangle ~/.spectrwm.conf
706   program[paup] = /home/armaa/Code/scripts/setter audio +5
707   program[padown] = /home/armaa/Code/scripts/setter audio -5
708   program[pamute] = /home/armaa/Code/scripts/setter audio
709   program[brigup] = /home/armaa/Code/scripts/setter brightness +10%
710   program[brigdown] = /home/armaa/Code/scripts/setter brightness 10%-
711   program[next] = playerctl next
712   program[prev] = playerctl previous
713   program[pause] = playerctl play-pause
714
715   bind[padown] = XF86AudioLowerVolume
716   bind[paup] = XF86AudioRaiseVolume
717   bind[pamute] = XF86AudioMute
718   bind[brigdown] = XF86MonBrightnessDown
719   bind[brigup] = XF86MonBrightnessUp
720   bind[pause] = XF86AudioPlay
721   bind[next] = XF86AudioNext
722   bind[prev] = XF86AudioPrev
723 #+end_src
724 **** HJKL
725 #+begin_src conf :tangle ~/.spectrwm.conf
726   program[h] = xdotool keyup h key --clearmodifiers Left
727   program[j] = xdotool keyup j key --clearmodifiers Down
728   program[k] = xdotool keyup k key --clearmodifiers Up
729   program[l] = xdotool keyup l key --clearmodifiers Right
730
731   bind[h] = MOD + Control + h
732   bind[j] = MOD + Control + j
733   bind[k] = MOD + Control + k
734   bind[l] = MOD + Control + l
735 #+end_src
736 **** Programs
737 #+begin_src conf :tangle ~/.spectrwm.conf
738   program[aerc] = alacritty -e aerc
739   program[catgirl] = alacritty --hold -e sh -c "while : ; do ssh root@armaanb.net -t abduco -A irc catgirl freenode; sleep 2; done"
740   program[emacs] = emacsclient -c
741   program[firefox] = firefox
742   program[calc] = alacritty -e because -l
743   program[emacs-anywhere] = emacsclient --eval "(emacs-everywhere)"
744
745   bind[aerc] = MOD+Control+1
746   bind[catgirl] = MOD+Control+2
747   bind[firefox] = MOD+Control+3
748   bind[emacs-anywhere] = MOD+Control+4
749   bind[calc] = MOD+Control+5
750   bind[emacs] = MOD+Control+Return
751 #+end_src
752 **** Quirks
753 #+begin_src conf :tangle ~/.spectrwm.conf
754   quirk[Castle Menu] = FLOAT
755   quirk[momen] = FLOAT
756 #+end_src
757 ** Ash
758 *** Options
759 #+begin_src conf :tangle ~/.config/ash/ashrc
760   set -o vi
761 #+end_src
762 *** Functions
763 **** Update all packages
764 #+begin_src shell :tangle ~/.config/ash/ashrc
765   color=$(tput setaf 5)
766   reset=$(tput sgr0)
767
768   apu() {
769       sudo echo "${color}== upgrading with yay ==${reset}"
770       yay
771       echo ""
772       echo "${color}== checking for pacnew files ==${reset}"
773       sudo pacdiff
774       echo
775       echo "${color}== upgrading flatpaks ==${reset}"
776       flatpak update
777       echo ""
778       echo "${color}== upgrading zsh plugins ==${reset}"
779       zpe-pull
780       echo ""
781       echo "${color}== updating nvim plugins ==${reset}"
782       nvim +PlugUpdate +PlugUpgrade +qall
783       echo "Updated nvim plugins"
784       echo ""
785       echo "${color}You are entirely up to date!${reset}"
786   }
787 #+end_src
788 **** Clean all packages
789 #+begin_src shell :tangle ~/.config/ash/ashrc
790   apap() {
791       sudo echo "${color}== cleaning pacman orphans ==${reset}"
792       (pacman -Qtdq | sudo pacman -Rns - 2> /dev/null) || echo "No orphans"
793       echo ""
794       echo "${color}== cleaning flatpaks ==${reset}"
795       flatpak remove --unused
796       echo ""
797       echo "${color}== cleaning zsh plugins ==${reset}"
798       zpe-clean
799       echo ""
800       echo "${color}== cleaning nvim plugins ==${reset}"
801       nvim +PlugClean +qall
802       echo "Cleaned nvim plugins"
803       echo ""
804       echo "${color}All orphans cleaned!${reset}"
805   }
806 #+end_src
807 **** Interact with 0x0
808 #+begin_src shell :tangle ~/.config/ash/ashrc
809   zxz="https://envs.sh"
810   ufile() { curl -F"file=@$1" "$zxz" ; }
811   upb() { curl -F"file=@-;" "$zxz" ; }
812   uurl() { curl -F"url=$1" "$zxz" ; }
813   ushort() { curl -F"shorten=$1" "$zxz" ; }
814   uclip() { xclip -out | curl -F"file=@-;" "$zxz" ; }
815 #+end_src
816 **** Finger
817 #+begin_src shell :tangle ~/.config/ash/ashrc
818   finger() {
819       user=$(echo "$1" | cut -f 1 -d '@')
820       host=$(echo "$1" | cut -f 2 -d '@')
821       echo $user | nc "$host" 79 -N
822   }
823 #+end_src
824 **** Upload to ftp.armaanb.net
825 #+begin_src shell :tangle ~/.config/ash/ashrc
826   pubup() {
827       rsync "$1" "root@armaanb.net:/var/ftp/pub/${2}"
828       echo "https://ftp.armaanb.net/pub/"$(basename "$1") | tee /dev/tty | xclip -sel c
829   }
830 #+end_src
831 *** Aliases
832 **** SSH
833 #+begin_src shell :tangle ~/.config/ash/ashrc
834   alias bhoji-drop='ssh -p 23 root@armaanb.net'
835   alias irc='ssh root@armaanb.net -t abduco -A irc catgirl freenode'
836   alias union='ssh 192.168.1.18'
837   alias mine='ssh -p 23 root@pickupserver.cc'
838   alias tcf='ssh root@204.48.23.68'
839   alias ngmun='ssh root@157.245.89.25'
840   alias prox='ssh root@192.168.1.224'
841   alias ncq='ssh root@143.198.123.17'
842   alias envs='ssh acheam@envs.net'
843 #+end_src
844 **** File management
845 #+begin_src shell :tangle ~/.config/ash/ashrc
846   alias ls='exa -lh --icons --git --group-directories-first'
847   alias la='exa -lha --icons --git --group-directories-first'
848   alias df='df -h / /boot'
849   alias du='du -h'
850   alias free='free -h'
851   alias cp='cp -riv'
852   alias rm='rm -iv'
853   alias mv='mv -iv'
854   alias ln='ln -iv'
855   alias grep='grep -in --exclude-dir=.git --color=auto'
856   alias fname='find -name'
857   alias mkdir='mkdir -pv'
858   alias unar='atool -x'
859   alias wget='wget -e robots=off'
860   alias lanex='~/.local/share/lxc/lxc'
861   alias vim='nvim'
862 #+end_src
863 **** System management
864 #+begin_src shell :tangle ~/.config/ash/ashrc
865   alias jctl='journalctl -p 3 -xb'
866   alias pkill='pkill -i'
867   alias cx='chmod +x'
868   alias redoas='doas $(fc -ln -1)'
869   alias crontab='crontab-argh'
870   alias sudo='doas ' # allows aliases to be run with doas
871   alias pasu='git -C ~/.password-store push'
872   alias yadu='yadm add -u && yadm commit -m "Updated `date -Iseconds`" && \
873     yadm push'
874 #+end_src
875 **** Networking
876 #+begin_src shell :tangle ~/.config/ash/ashrc
877   alias ping='ping -c 10'
878   alias speed='speedtest-cli'
879   alias ip='ip --color=auto'
880   alias cip='curl https://armaanb.net/ip'
881   alias gps='gpg --keyserver keyserver.ubuntu.com --search-keys'
882   alias gpp='gpg --keyserver keyserver.ubuntu.com --recv-key'
883   alias plan='T=$(mktemp) && \
884         rsync root@armaanb.net:/etc/finger/plan.txt "$T" && \
885         TT=$(mktemp) && \
886         head -n -2 $T > $TT && \
887         vim $TT && \
888         echo "\nLast updated: $(date -R)" >> "$TT" && \
889         fold -sw 72 "$TT" > "$T"| \
890         rsync "$T" root@armaanb.net:/etc/finger/plan.txt'
891   alias wttr='curl -s "wttr.in/02445?n" | head -n -3'
892 #+end_src
893 **** Other
894 #+begin_src shell :tangle ~/.config/ash/ashrc
895   alias bigrandomfile='dd if=/dev/urandom of=1GB-urandom bs=1M count=1024 \
896     iflag=fullblock status=progress'
897   alias bigboringfile='dd if=/dev/zero of=1GB-zero bs=1M count=1024 \
898     iflag=fullblock status=progress'
899   alias ts='gen-shell -c task'
900   alias ts='gen-shell -c task'
901   alias tetris='autoload -Uz tetriscurses && tetriscurses'
902   alias news='newsboat'
903   alias tilderadio="\mpv https://radio.tildeverse.org/radio/8000/radio.ogg"
904   alias ytmusic="youtube-dl -x --add-metadata  --audio-format aac \
905     --restrict-filenames -o '%(title)s.%(ext)s'"
906   alias cal="cal -3 --color=auto"
907   alias bc='bc -l'
908 #+end_src
909 **** Virtual machines, chroots
910 #+begin_src shell :tangle ~/.config/ash/ashrc
911   alias ckiss="sudo chrooter ~/Virtual/kiss"
912   alias cdebian="sudo chrooter ~/Virtual/debian bash"
913   alias cwindows='devour qemu-system-x86_64 \
914     -smp 3 \
915     -cpu host \
916     -enable-kvm \
917     -m 3G \
918     -device VGA,vgamem_mb=64 \
919     -device intel-hda \
920     -device hda-duplex \
921     -net nic \
922     -net user,smb=/home/armaa/Public \
923     -drive format=qcow2,file=/home/armaa/Virtual/windows.qcow2'
924 #+end_src
925 **** Python
926 #+begin_src shell :tangle ~/.config/ash/ashrc
927   alias ipy="ipython"
928   alias zpy="zconda && ipython"
929   alias math="ipython --profile=math"
930   alias pypi="python setup.py sdist && twine upload dist/*"
931   alias pip="python -m pip"
932   alias black="black -l 79"
933 #+end_src
934 **** Latin
935 #+begin_src shell :tangle ~/.config/ash/ashrc
936   alias words='gen-shell -c "words"'
937   alias words-e='gen-shell -c "words ~E"'
938 #+end_src
939 **** Devour
940 #+begin_src shell :tangle ~/.config/ash/ashrc
941   alias zathura='devour zathura'
942   alias mpv='devour mpv'
943   alias sql='devour sqlitebrowser'
944   alias cad='devour openscad'
945   alias feh='devour feh'
946 #+end_src
947 **** Package management (Pacman)
948 #+begin_src shell :tangle ~/.config/ash/ashrc
949   alias aps='yay -Ss'
950   alias api='yay -Syu'
951   alias apii='sudo pacman -S'
952   alias app='yay -Rns'
953   alias apc='yay -Sc'
954   alias apo='yay -Qttd'
955   alias azf='pacman -Q | fzf'
956   alias favorites='pacman -Qe | cut -d " " -f 1 > ~/Documents/favorites'
957   alias ufetch='ufetch-arch'
958   alias reflect='reflector --verbose --sort rate --save \
959      ~/.local/etc/pacman.d/mirrorlist --download-timeout 60' # Takes ~45m to run
960 #+end_src
961 **** Package management (KISS)
962 #+begin_src shell :tangle ~/.config/ash/ashrc
963   alias kzf="kiss s \* | xargs -l basename | \
964     fzf --preview 'kiss search {} | xargs -l dirname'"
965 #+end_src
966 *** Exports
967 #+begin_src shell :tangle ~/.config/ash/ashrc
968   export EDITOR="emacsclient -c"
969   export VISUAL="$EDITOR"
970   export TERM=xterm-256color # for compatability
971
972   export GPG_TTY="$(tty)"
973   export MANPAGER='nvim +Man!'
974   export PAGER='less'
975
976   export GTK_USE_PORTAL=1
977
978   export PATH="/home/armaa/.local/bin:$PATH" # prioritize .local/bin
979   export PATH="/home/armaa/Code/scripts:$PATH" # prioritize my scripts
980   export PATH="/home/armaa/Code/scripts/bin:$PATH" # prioritize my bins
981   export PATH="$PATH:/home/armaa/.cargo/bin"
982   export PATH="$PATH:/home/armaa/.local/share/gem/ruby/2.7.0/bin"
983   export PATH="$PATH:/usr/sbin"
984   export PATH="$PATH:/opt/FreeTube/freetube"
985
986   export LC_ALL="en_US.UTF-8"
987   export LC_CTYPE="en_US.UTF-8"
988   export LANGUAGE="en_US.UTF-8"
989
990   export KISS_PATH="/home/armaa/Virtual/kiss/home/armaa/kiss-repo"
991   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/core"
992   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/extra"
993   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/xorg"
994   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/testing"
995   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-community/community"
996 #+end_src
997 ** Alacritty
998 *** Appearance
999 #+begin_src yml :tangle ~/.config/alacritty/alacritty.yml
1000 font:
1001   normal:
1002     family: JetBrains Mono Nerd Font
1003     style: Medium
1004   italic:
1005     style: Italic
1006   Bold:
1007     style: Bold
1008   size: 7
1009   ligatures: true # Requires ligature patch
1010
1011 window:
1012   padding:
1013     x: 5
1014     y: 5
1015
1016 background_opacity: 1
1017 #+end_src
1018 *** Color scheme
1019 Modus vivendi. Source: https://github.com/ishan9299/Nixos/blob/d4bbb7536be95b59466bb9cca4d671be46e04e81/user/alacritty/alacritty.yml#L30-L118
1020 #+begin_src yml :tangle ~/.config/alacritty/alacritty.yml
1021 colors:
1022   # Default colors
1023   primary:
1024     background: '#000000'
1025     foreground: '#ffffff'
1026
1027   cursor:
1028     text: '#000000'
1029     background: '#ffffff'
1030
1031   # Normal colors (except green it is from intense colors)
1032   normal:
1033     black:   '#000000'
1034     red:     '#ff8059'
1035     green:   '#00fc50'
1036     yellow:  '#eecc00'
1037     blue:    '#29aeff'
1038     magenta: '#feacd0'
1039     cyan:    '#00d3d0'
1040     white:   '#eeeeee'
1041
1042   # Bright colors [all the faint colors in the modus theme]
1043   bright:
1044     black:   '#555555'
1045     red:     '#ffa0a0'
1046     green:   '#88cf88'
1047     yellow:  '#d2b580'
1048     blue:    '#92baff'
1049     magenta: '#e0b2d6'
1050     cyan:    '#a0bfdf'
1051     white:   '#ffffff'
1052
1053   # dim [all the intense colors in modus theme]
1054   dim:
1055     black:   '#222222'
1056     red:     '#fb6859'
1057     green:   '#00fc50'
1058     yellow:  '#ffdd00'
1059     blue:    '#00a2ff'
1060     magenta: '#ff8bd4'
1061     cyan:    '#30ffc0'
1062     white:   '#dddddd'
1063 #+end_src
1064 ** IPython
1065 *** General
1066 Symlink profile_default/ipython_config.py to profile_math/ipython_config.py
1067 #+begin_src python :tangle ~/.ipython/profile_default/ipython_config.py
1068   c.TerminalInteractiveShell.editing_mode = 'vi'
1069   c.InteractiveShell.colors = 'linux'
1070   c.TerminalInteractiveShell.confirm_exit = False
1071 #+end_src
1072 *** Math
1073 #+begin_src python :tangle ~/.ipython/profile_math/startup.py
1074   from math import *
1075
1076   def deg(x):
1077       return x * (180 /  pi)
1078
1079   def rad(x):
1080       return x * (pi / 180)
1081
1082   def rad(x, unit):
1083       return (x * (pi / 180)) / unit
1084
1085   def csc(x):
1086       return 1 / sin(x)
1087
1088   def sec(x):
1089       return 1 / cos(x)
1090
1091   def cot(x):
1092       return 1 / tan(x)
1093 #+end_src
1094 ** MPV
1095 Make MPV play a little bit smoother.
1096 #+begin_src conf :tangle ~/.config/mpv/mpv.conf
1097   ytdl-format="bestvideo[height<=?1080]+bestaudio/best"
1098   hwdec=auto-copy
1099 #+end_src
1100 ** Inputrc
1101 For any GNU Readline programs
1102 #+begin_src conf :tangle ~/.inputrc
1103   set editing-mode emacs
1104 #+end_src
1105 ** Git
1106 *** User
1107 #+begin_src conf :tangle ~/.gitconfig
1108   [user]
1109   name = Armaan Bhojwani
1110   email = me@armaanb.net
1111   signingkey = 0FEB9471E19C49C60CFBEB133C9ED82FFE788E4A
1112 #+end_src
1113 *** Init
1114 #+begin_src conf :tangle ~/.gitconfig
1115   [init]
1116   defaultBranch = main
1117 #+end_src
1118 *** GPG
1119 #+begin_src conf :tangle ~/.gitconfig
1120   [gpg]
1121   program = gpg
1122 #+end_src
1123 *** Sendemail
1124 #+begin_src conf :tangle ~/.gitconfig
1125   [sendemail]
1126   smtpserver = smtp.mailbox.org
1127   smtpuser = me@armaanb.net
1128   smtpencryption = ssl
1129   smtpserverport = 465
1130   confirm = auto
1131 #+end_src
1132 *** Submodules
1133 #+begin_src conf :tangle ~/.gitconfig
1134   [submodule]
1135   recurse = true
1136 #+end_src
1137 *** Aliases
1138 #+begin_src conf :tangle ~/.gitconfig
1139   [alias]
1140   stat = diff --stat
1141   sclone = clone --depth 1
1142   sclean = clean -dfX
1143   a = add
1144   aa = add .
1145   c = commit
1146   quickfix = commit . --amend --no-edit
1147   p = push
1148   subup = submodule update --remote
1149   loc = diff --stat 4b825dc642cb6eb9a060e54bf8d69288fbee4904 # Empty hash
1150   pushnc = push -o skip-ci
1151 #+end_src
1152 *** Commits
1153 #+begin_src conf :tangle ~/.gitconfig
1154   [commit]
1155   gpgsign = true
1156   verbose = true
1157 #+end_src
1158 ** Dunst
1159 Lightweight notification daemon.
1160 *** General
1161 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1162   [global]
1163   font = "JetBrains Mono Medium Nerd Font 11"
1164   allow_markup = yes
1165   format = "<b>%s</b>\n%b"
1166   sort = no
1167   indicate_hidden = yes
1168   alignment = center
1169   bounce_freq = 0
1170   show_age_threshold = 60
1171   word_wrap = yes
1172   ignore_newline = no
1173   geometry = "400x5-10+10"
1174   transparency = 0
1175   idle_threshold = 120
1176   monitor = 0
1177   sticky_history = yes
1178   line_height = 0
1179   separator_height = 1
1180   padding = 8
1181   horizontal_padding = 8
1182   max_icon_size = 32
1183   separator_color = "#ffffff"
1184   startup_notification = false
1185 #+end_src
1186 *** Modes
1187 #+begin_src conf :tangle ~/.config/dunst/dunstrc
1188   [frame]
1189   width = 1
1190   color = "#ffffff"
1191
1192   [shortcuts]
1193   close = mod4+c
1194   close_all = mod4+shift+c
1195   history = mod4+ctrl+c
1196
1197   [urgency_low]
1198   background = "#222222"
1199   foreground = "#ffffff"
1200   highlight = "#ffffff"
1201   timeout = 5
1202
1203   [urgency_normal]
1204   background = "#222222"
1205   foreground = "#ffffff"
1206   highlight = "#ffffff"
1207   timeout = 15
1208
1209   [urgency_critical]
1210   background = "#222222"
1211   foreground = "#a60000"
1212   highlight = "#ffffff"
1213   timeout = 0
1214 #+end_src
1215 ** Zathura
1216 *** Options
1217 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1218   map <C-i> recolor
1219   map <A-b> toggle_statusbar
1220   set selection-clipboard clipboard
1221   set scroll-step 200
1222
1223   set window-title-basename "true"
1224   set selection-clipboard "clipboard"
1225 #+end_src
1226 *** Colors
1227 #+begin_src conf :tangle ~/.config/zathura/zathurarc
1228   set default-bg         "#000000"
1229   set default-fg         "#ffffff"
1230   set render-loading     true
1231   set render-loading-bg  "#000000"
1232   set render-loading-fg  "#ffffff"
1233
1234   set recolor-lightcolor "#000000" # bg
1235   set recolor-darkcolor  "#ffffff" # fg
1236   set recolor            "true"
1237 #+end_src
1238 ** Firefox
1239 *** Swap tab and URL bars
1240 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1241   #nav-bar {
1242       -moz-box-ordinal-group: 1 !important;
1243   }
1244
1245   #PersonalToolbar {
1246       -moz-box-ordinal-group: 2 !important;
1247   }
1248
1249   #titlebar {
1250       -moz-box-ordinal-group: 3 !important;
1251   }
1252 #+end_src
1253 *** Hide URL bar when not focused.
1254 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1255   #navigator-toolbox:not(:focus-within):not(:hover) {
1256       margin-top: -30px;
1257   }
1258
1259   #navigator-toolbox {
1260       transition: 0.1s margin-top ease-out;
1261   }
1262 #+end_src
1263 ** Black screen by default
1264 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userChrome.css
1265   #main-window,
1266   #browser,
1267   #browser vbox#appcontent tabbrowser,
1268   #content,
1269   #tabbrowser-tabpanels,
1270   #tabbrowser-tabbox,
1271   browser[type="content-primary"],
1272   browser[type="content"] > html,
1273   .browserContainer {
1274       background: black !important;
1275       color: #fff !important;
1276   }
1277 #+end_src
1278 #+begin_src css :tangle ~/.mozilla/firefox/armaan-release/chrome/userContent.css
1279   @-moz-document url("about:home"), url("about:blank"), url("about:newtab") {
1280       body {
1281           background: black !important;
1282       }
1283   }
1284 #+end_src
1285 ** Xresources
1286 *** Color scheme
1287 Modus operandi.
1288 #+begin_src conf :tangle ~/.Xresources
1289   ! special
1290   ,*.foreground:   #ffffff
1291   ,*.background:   #000000
1292   ,*.cursorColor:  #ffffff
1293
1294   ! black
1295   ,*.color0:       #000000
1296   ,*.color8:       #555555
1297
1298   ! red
1299   ,*.color1:       #ff8059
1300   ,*.color9:       #ffa0a0
1301
1302   ! green
1303   ,*.color2:       #00fc50
1304   ,*.color10:      #88cf88
1305
1306   ! yellow
1307   ,*.color3:       #eecc00
1308   ,*.color11:      #d2b580
1309
1310   ! blue
1311   ,*.color4:       #29aeff
1312   ,*.color12:      #92baff
1313
1314   ! magenta
1315   ,*.color5:       #feacd0
1316   ,*.color13:      #e0b2d6
1317
1318   ! cyan
1319   ,*.color6:       #00d3d0
1320   ,*.color14:      #a0bfdf
1321
1322   ! white
1323   ,*.color7:       #eeeeee
1324   ,*.color15:      #dddddd
1325 #+end_src
1326 *** Copy paste
1327 #+begin_src conf :tangle ~/.Xresources
1328   xterm*VT100.Translations: #override \
1329   Shift <KeyPress> Insert: insert-selection(CLIPBOARD) \n\
1330   Ctrl Shift <Key>V:    insert-selection(CLIPBOARD) \n\
1331   Ctrl Shift <Key>C:    copy-selection(CLIPBOARD) \n\
1332   Ctrl <Btn1Up>: exec-formatted("xdg-open '%t'", PRIMARY)
1333 #+end_src
1334 *** Blink cursor
1335 #+begin_src conf :tangle ~/.Xresources
1336   xterm*cursorBlink: true
1337 #+end_src
1338 *** Alt keys
1339 #+begin_src conf :tangle ~/.Xresources
1340   XTerm*eightBitInput:   false
1341   XTerm*eightBitOutput:  true
1342 #+end_src