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