Add feature/unicode module (#97)

This commit is contained in:
Henrik Lissner 2017-06-08 14:17:52 +02:00
parent 1e47728430
commit 6d905240c0
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
3 changed files with 14 additions and 0 deletions

View file

@ -40,6 +40,7 @@
workspaces ; tab emulation, persistence & separate workspaces
eval ; repls, runners 'n builders; run code, run
debug ; stepping through code, to help you add bugs
;unicode ; extended unicode support for various languages
:completion
company ; code completion backend

View file

@ -0,0 +1,9 @@
;;; feature/unicode/config.el -*- lexical-binding: t; -*-
(setq bidi-display-reordering t)
(def-package! unicode-fonts
:demand t
:config
;; NOTE will impact startup time on first run
(unicode-fonts-setup))

View file

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