this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:fire_up: changing font from Departure Mono to Monaspace Krypton

+14 -14
+1 -1
home/alacritty/default.nix
··· 21 21 22 22 font = { 23 23 normal = { 24 - family = "Departure Mono"; 24 + family = "Monaspace Krypton"; 25 25 }; 26 26 27 27 size = 11.0;
+10 -10
home/emacs/emacs.org
··· 71 71 #+begin_src emacs-lisp 72 72 (pixel-scroll-precision-mode 1) 73 73 #+end_src 74 - 74 + 75 75 ** Dashboard 76 76 #+begin_src emacs-lisp 77 77 (use-package dashboard ··· 104 104 105 105 #+begin_src emacs-lisp 106 106 (set-face-attribute 'default nil 107 - :family "Departure Mono" 107 + :family "Monaspace Krypton" 108 108 :height 100 109 109 :weight 'normal 110 110 :width 'normal) ··· 156 156 ;; Make ESC quit prompts 157 157 (global-set-key (kbd "<escape>") 'keyboard-escape-quit) 158 158 #+end_src 159 - 159 + 160 160 ** Ivy and Counsel 161 161 162 162 #+begin_src emacs-lisp ··· 249 249 :custom 250 250 (magit-display-buffer-function #'magit-display-buffer-same-window-except-diff-v1)) 251 251 #+end_src 252 - 252 + 253 253 *** Magit delta 254 254 #+begin_src emacs-lisp 255 255 (use-package magit-delta ··· 301 301 (gleam-ts-mode . lsp-deferred) 302 302 (haskell-literate-mode . lsp-deferred)) 303 303 #+end_src 304 - 304 + 305 305 *** lsp-ui 306 306 #+begin_src emacs-lisp 307 307 (use-package lsp-ui ··· 310 310 (lsp-ui-doc-position 'bottom)) 311 311 #+end_src 312 312 313 - *** lsp-ivy 313 + *** lsp-ivy 314 314 #+begin_src emacs-lisp 315 315 (use-package lsp-ivy) 316 316 #+end_src 317 317 318 - *** lsp-treemacs 318 + *** lsp-treemacs 319 319 #+begin_src emacs-lisp 320 320 (use-package lsp-treemacs) 321 321 #+end_src 322 - 322 + 323 323 *** Dap Mode 324 324 #+begin_src emacs-lisp 325 325 (use-package dap-mode) ··· 494 494 (org-level-6 . 1.1) 495 495 (org-level-7 . 1.1) 496 496 (org-level-8 . 1.1))) 497 - (set-face-attribute (car face) nil :font "Departure Mono" :weight 'regular :height (cdr face))) 497 + (set-face-attribute (car face) nil :font "Monaspace Krypton" :weight 'regular :height (cdr face))) 498 498 499 499 ;; Ensure that anything that should be fixed-pitch in Org files appears that way 500 500 (set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch) ··· 619 619 (use-package visual-fill-column 620 620 :hook (org-mode . tulkdan/org-mode-visual-fill)) 621 621 #+end_src 622 - 622 + 623 623 ** Org Modern 624 624 625 625 #+begin_src emacs-lisp
+1 -1
home/vscode/default.nix
··· 21 21 "workbench.colorTheme" = "Catppuccin Mocha"; 22 22 "workbench.iconTheme" = "catppuccin-mocha"; 23 23 "editor.minimap.enabled" = false; 24 - "editor.fontFamily" = "'Departure Mono', 'Monaspace Krypton', 'Hasklig','Droid Sans Mono', 'monospace', monospace"; 24 + "editor.fontFamily" = "'Monaspace Krypton', 'Hasklig','Droid Sans Mono', 'monospace', monospace"; 25 25 "editor.fontLigatures" = true; 26 26 "editor.renderWhitespace" = "trailing"; 27 27 "editor.cursorStyle" = "underline";
+2 -2
home/zed/default.nix
··· 72 72 ui_font_size = 13; 73 73 buffer_font_size = 13; 74 74 relative_line_numbers = "wrapped"; 75 - buffer_font_family = "Departure Mono"; 76 - ui_font_family = "Departure Mono"; 75 + buffer_font_family = "Monaspace Krypton"; 76 + ui_font_family = "Monaspace Krypton"; 77 77 }; 78 78 }; 79 79 }