Move feature/unicode => ui/unicode

This commit is contained in:
Henrik Lissner 2017-06-08 14:27:06 +02:00
parent b4e454823f
commit cdd24312d9
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,6 @@
workspaces ; tab emulation, persistence & separate workspaces workspaces ; tab emulation, persistence & separate workspaces
eval ; repls, runners 'n builders; run code, run eval ; repls, runners 'n builders; run code, run
debug ; stepping through code, to help you add bugs debug ; stepping through code, to help you add bugs
;unicode ; extended unicode support for various languages
:completion :completion
company ; code completion backend company ; code completion backend
@ -56,6 +55,7 @@
hl-todo ; highlight TODO/FIXME/NOTE tags hl-todo ; highlight TODO/FIXME/NOTE tags
nav-flash ; blink the current line after jumping nav-flash ; blink the current line after jumping
evil-goggles ; display visual hints when editing in evil evil-goggles ; display visual hints when editing in evil
;unicode ; extended unicode font support for various languages
:tools :tools
dired ; making dired pretty [functional] dired ; making dired pretty [functional]

View file

@ -21,7 +21,7 @@
(with-demoted-errors "FONT ERROR: %s" (with-demoted-errors "FONT ERROR: %s"
(set-frame-font +doom-font t t) (set-frame-font +doom-font t t)
;; Fallback to `doom-unicode-font' for Unicode characters ;; Fallback to `doom-unicode-font' for Unicode characters
(unless (featurep! :feature unicode) (unless (featurep! :ui unicode)
(when +doom-unicode-font (when +doom-unicode-font
(set-fontset-font t 'unicode +doom-unicode-font))) (set-fontset-font t 'unicode +doom-unicode-font)))
;; ...and for variable-pitch mode ;; ...and for variable-pitch mode

View file

@ -1,4 +1,4 @@
;;; feature/unicode/config.el -*- lexical-binding: t; -*- ;;; ui/unicode/config.el -*- lexical-binding: t; -*-
(setq bidi-display-reordering t) (setq bidi-display-reordering t)

View file

@ -1,4 +1,4 @@
;; -*- no-byte-compile: t; -*- ;; -*- no-byte-compile: t; -*-
;;; feature/unicode/packages.el ;;; ui/unicode/packages.el
(package! unicode-fonts) (package! unicode-fonts)