aboutsummaryrefslogtreecommitdiff
path: root/users/programs/emacs/site-lisp/init-ui.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-12 08:52:51 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-12 08:52:51 -0700
commit61fa2329f553f9c7962e968e1ec98ae675903b70 (patch)
tree0afdbf7c8fddda1718abee49db6206a5f8df5b09 /users/programs/emacs/site-lisp/init-ui.el
parentdirectories first (diff)
downloadinfra-61fa2329f553f9c7962e968e1ec98ae675903b70.tar.gz
users -> home
Diffstat (limited to 'users/programs/emacs/site-lisp/init-ui.el')
-rw-r--r--users/programs/emacs/site-lisp/init-ui.el47
1 files changed, 0 insertions, 47 deletions
diff --git a/users/programs/emacs/site-lisp/init-ui.el b/users/programs/emacs/site-lisp/init-ui.el
deleted file mode 100644
index ea1cb5a..0000000
--- a/users/programs/emacs/site-lisp/init-ui.el
+++ /dev/null
@@ -1,47 +0,0 @@
-;;; init-ui.el --- User interface config. -*- lexical-binding: t -*-
-
-;;; Commentary:
-
-;; User interface settings.
-
-;;; Code:
-
-(use-package whitespace
- :init
- (global-whitespace-mode t)
- :custom
- (whitespace-style '(face
- trailing missing-newline-at-eof)))
-
-(use-package fringe
- :custom (fringe-mode '(8 . 0)))
-
-;; | 数字 | アルファベット | 日本語 | 絵文字 |
-;; | 0123 | abcdefghijklmn | あいう | 🍎🍎🍎 |
-(set-face-attribute 'default nil :family "Source Code Pro" :height 140)
-
-(use-package modus-themes
- :custom
- (modus-themes-italic-constructs t)
- (modus-themes-syntax '(alt-syntax green-strings))
- (modus-themes-mode-line '(moody accented borderless))
- (modus-themes-tabs-accented t)
-
- (modus-themes-completions
- '((matches . (extrabold background))
- (selection . (semibold accented))
- (popup . (accented))))
-
- (modus-themes-fringe 'subtle)
- (modus-themes-lang-checkers '(text-also straight-underline))
- (modus-themes-hl-line '(accented))
- (modus-themes-subtle-line-numbers t)
- (modus-themes-markup '(bold italic))
- (modus-themes-paren-match '(bold))
- (modus-themes-region '())
-
- :init
- (load-theme 'modus-operandi-deuteranopia t))
-
-(provide 'init-ui)
-;;; init-ui.el ends here