Files
dotfiles/profiles/desktop/.emacs.d/lisp/custom-settings.el
2026-02-13 04:20:30 +01:00

81 lines
4.6 KiB
EmacsLisp

;;; custom-settings.el --- settings made by custom -*- lexical-binding: t -*-
;;; Commentary:
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ansi-color-black ((t (:foreground "#000000"))))
'(ansi-color-blue ((t (:foreground "#004f9e"))))
'(ansi-color-bright-black ((t (:foreground "#5d5d5d"))))
'(ansi-color-bright-blue ((t (:foreground "#0071ff"))))
'(ansi-color-bright-cyan ((t (:foreground "#4bb8fd"))))
'(ansi-color-bright-green ((t (:foreground "#7bc91f"))))
'(ansi-color-bright-magenta ((t (:foreground "#ff1d62"))))
'(ansi-color-bright-red ((t (:foreground "#ff361e"))))
'(ansi-color-bright-white ((t (:foreground "#ffffff"))))
'(ansi-color-bright-yellow ((t (:foreground "#ffd00a"))))
'(ansi-color-cyan ((t (:foreground "#2aa7e7"))))
'(ansi-color-green ((t (:foreground "#6ab017"))))
'(ansi-color-magenta ((t (:foreground "#ec0048"))))
'(ansi-color-red ((t (:foreground "#e1321a"))))
'(ansi-color-yellow ((t (:foreground "#ffc005"))))
'(eat-term-color-0 ((t (:foreground "#000000"))))
'(eat-term-color-1 ((t (:foreground "#e1321a"))))
'(eat-term-color-10 ((t (:foreground "#7bc91f"))))
'(eat-term-color-11 ((t (:foreground "#ffd00a"))))
'(eat-term-color-12 ((t (:foreground "#0071ff"))))
'(eat-term-color-13 ((t (:foreground "#ff1d62"))))
'(eat-term-color-14 ((t (:foreground "#4bb8fd"))))
'(eat-term-color-15 ((t (:foreground "#ffffff"))))
'(eat-term-color-2 ((t (:foreground "#6ab017"))))
'(eat-term-color-3 ((t (:foreground "#ffc005"))))
'(eat-term-color-4 ((t (:foreground "#004f9e"))))
'(eat-term-color-5 ((t (:foreground "#ec0048"))))
'(eat-term-color-6 ((t (:foreground "#2aa7e7"))))
'(eat-term-color-7 ((t (:foreground "#f2f2f2"))))
'(eat-term-color-8 ((t (:foreground "#5d5d5d"))))
'(eat-term-color-9 ((t (:foreground "#ff361e"))))
'(term-color-black ((t (:background "#000000" :foreground "#000000"))))
'(term-color-blue ((t (:background "#004f9e" :foreground "#004f9e"))))
'(term-color-bright-black ((t (:background "#5d5d5d" :foreground "#5d5d5d"))))
'(term-color-bright-blue ((t (:background "#0071ff" :foreground "#0071ff"))))
'(term-color-bright-cyan ((t (:background "#4bb8fd" :foreground "#4bb8fd"))))
'(term-color-bright-green ((t (:background "#7bc91f" :foreground "#7bc91f"))))
'(term-color-bright-magenta ((t (:background "#ff1d62" :foreground "#ff1d62"))))
'(term-color-bright-red ((t (:background "#ff361e" :foreground "#ff361e"))))
'(term-color-bright-white ((t (:background "#ffffff" :foreground "#ffffff"))))
'(term-color-bright-yellow ((t (:background "#ffd00a" :foreground "#ffd00a"))))
'(term-color-cyan ((t (:background "#2aa7e7" :foreground "#2aa7e7"))))
'(term-color-green ((t (:background "#6ab017" :foreground "#6ab017"))))
'(term-color-magenta ((t (:background "#ec0048" :foreground "#ec0048"))))
'(term-color-red ((t (:background "#e1321a" :foreground "#e1321a"))))
'(term-color-white ((t (:background "#f2f2f2" :foreground "#f2f2f2"))))
'(term-color-yellow ((t (:background "#ffc005" :foreground "#ffc005"))))
'(vterm-color-black ((t (:background "#000000" :foreground "#000000"))))
'(vterm-color-blue ((t (:background "#004f9e" :foreground "#004f9e"))))
'(vterm-color-bright-black ((t (:background "#5d5d5d" :foreground "#5d5d5d"))))
'(vterm-color-bright-blue ((t (:background "#0071ff" :foreground "#0071ff"))))
'(vterm-color-bright-cyan ((t (:background "#4bb8fd" :foreground "#4bb8fd"))))
'(vterm-color-bright-green ((t (:background "#7bc91f" :foreground "#7bc91f"))))
'(vterm-color-bright-magenta ((t (:background "#ff1d62" :foreground "#ff1d62"))))
'(vterm-color-bright-red ((t (:background "#ff361e" :foreground "#ff361e"))))
'(vterm-color-bright-white ((t (:background "#ffffff" :foreground "#ffffff"))))
'(vterm-color-bright-yellow ((t (:background "#ffd00a" :foreground "#ffd00a"))))
'(vterm-color-cyan ((t (:background "#2aa7e7" :foreground "#2aa7e7"))))
'(vterm-color-green ((t (:background "#6ab017" :foreground "#6ab017"))))
'(vterm-color-magenta ((t (:background "#ec0048" :foreground "#ec0048"))))
'(vterm-color-red ((t (:background "#e1321a" :foreground "#e1321a"))))
'(vterm-color-white ((t (:background "#f2f2f2" :foreground "#f2f2f2"))))
'(vterm-color-yellow ((t (:background "#ffc005" :foreground "#ffc005")))))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(provide 'custom-settings)
;; custom-settings.el ends here