First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

19
lisp/ux/symbols.el Normal file
View File

@@ -0,0 +1,19 @@
;;; symbols.el --- Configure how Emacs handles certain symbols -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(use-package page-break-lines
:diminish page-break-lines-mode
:config
(global-page-break-lines-mode t))
;; (with-eval-after-load 'ux/coding
;; (when (eq default-terminal-coding-system 'utf-8)
;; (use-package pretty-mode-plus)))
(use-package all-the-icons
:if window-system)
(provide 'ux/symbols)
;;; symbols.el ends here