Files
memex/projects/dotemacs/modules/emacs-ui.org
Amr Gharbeia cc6c552d5a refactor: Move Emacs config from system/ to projects/dotemacs/
- Delete deprecated system/ configuration files
- Update projects/dotemacs/modules/ with reorganized config
- Add .opencode/ directory for agent state
- Clean up attachments and unused documentation files
2026-04-25 18:41:20 -04:00

765 B

Emacs UI Configuration

Appearance

Basic UI settings for a cleaner look.

  (when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
  (when (fboundp 'menu-bar-mode) (menu-bar-mode -1))
  (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))

  (setq inhibit-startup-screen t)
  (setq initial-scratch-message nil)

Fonts

  (set-face-attribute 'default nil :family "sans-serif" :height 120)
  (set-face-attribute 'variable-pitch nil :family "sans-serif")

Org-modern (UI elements)

  (use-package org-modern
    :ensure t
    :config
    (set-face-attribute 'org-modern-symbol nil :family "Iosevka")
    (global-org-modern-mode)
    )