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