Move elisp into a folder and switch to emacs-wayland on linux.
This commit is contained in:
15
ansible/roles/emacs/files/elisp/base-theme.el
Normal file
15
ansible/roles/emacs/files/elisp/base-theme.el
Normal file
@@ -0,0 +1,15 @@
|
||||
;; Set theme
|
||||
(load-theme 'tango-dark t)
|
||||
(set-face-attribute 'default nil :background "black")
|
||||
;; Bright yellow highlighting for selected region
|
||||
(set-face-attribute 'region nil :background "#ffff50" :foreground "black")
|
||||
;; Bright green cursor to distinguish from yellow region
|
||||
(set-face-attribute 'cursor nil :background "#ccff66")
|
||||
;; Hightlight the current line
|
||||
(set-face-attribute 'line-number-current-line nil :foreground "white")
|
||||
;; Set default font
|
||||
(set-face-attribute 'default nil :height 100 :width 'regular :weight 'regular :family "Cascadia Mono")
|
||||
;; Set fallback font for unicode glyphs
|
||||
(set-fontset-font t 'emoji (font-spec :name "Noto Color Emoji") nil 'prepend)
|
||||
|
||||
(provide 'base-theme)
|
||||
Reference in New Issue
Block a user