25 lines
1.5 KiB
EmacsLisp
Executable File
25 lines
1.5 KiB
EmacsLisp
Executable File
#!/usr/bin/env -S emacs --no-splash -q -l
|
|
;;; Initialization file for emacs designed to provide the standard environment to work with the project
|
|
|
|
;; NOT_FINISHED(Krey): Work in progress
|
|
|
|
(setq initial-buffer-choice "/home/kreyren/Repositories/guix.next/25-env/emacs/splash-screen.el")
|
|
|
|
;;; Faces
|
|
(custom-set-faces
|
|
;; Rainbow delimiters
|
|
'(rainbow-delimiters-base-error-face ((t (:inherit rainbow-delimiters-base-face :foreground "red"))))
|
|
'(rainbow-delimiters-base-face ((t (:inherit nil))))
|
|
'(rainbow-delimiters-depth-1-face ((t (:inherit rainbow-delimiters-base-face :foreground "orange"))))
|
|
'(rainbow-delimiters-depth-2-face ((t (:inherit rainbow-delimiters-base-face :foreground "green"))))
|
|
'(rainbow-delimiters-depth-3-face ((t (:inherit rainbow-delimiters-base-face :foreground "cyan"))))
|
|
'(rainbow-delimiters-depth-4-face ((t (:inherit rainbow-delimiters-base-face :foreground "magenta"))))
|
|
'(rainbow-delimiters-depth-5-face ((t (:inherit rainbow-delimiters-base-face :foreground "white smoke"))))
|
|
'(rainbow-delimiters-depth-6-face ((t (:inherit rainbow-delimiters-base-face :foreground "gray26"))))
|
|
'(rainbow-delimiters-depth-7-face ((t (:inherit rainbow-delimiters-base-face :foreground "chocolate4"))))
|
|
'(rainbow-delimiters-depth-8-face ((t (:inherit rainbow-delimiters-base-face :foreground "medium blue"))))
|
|
'(rainbow-delimiters-depth-9-face ((t (:inherit rainbow-delimiters-base-face :foreground "DarkOliveGreen1")))))
|
|
|
|
;;; FINISH
|
|
(message "Welcome to the standard emacs environment of this project!")
|