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