Increase default font size 14 -> 16
Refile ligatures section under font because that just makes sense
This commit is contained in:
parent
77fa033bf0
commit
66abfa208f
36
README.org
36
README.org
|
@ -236,10 +236,10 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia
|
|||
(add-to-list 'initial-frame-alist '(width . 120))
|
||||
(add-to-list 'initial-frame-alist '(height . 80))
|
||||
(add-to-list 'initial-frame-alist '(alpha-background . 80))
|
||||
(add-to-list 'initial-frame-alist '(font . "Iosevka Nerd Font-14"))
|
||||
(add-to-list 'initial-frame-alist '(font . "Iosevka Nerd Font-16"))
|
||||
|
||||
(add-to-list 'default-frame-alist '(alpha-background . 80))
|
||||
(add-to-list 'default-frame-alist '(font . "Iosevka Nerd Font-14"))
|
||||
(add-to-list 'default-frame-alist '(font . "Iosevka Nerd Font-16"))
|
||||
|
||||
;; Theme
|
||||
(use-package modus-themes
|
||||
|
@ -294,6 +294,22 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia
|
|||
(keymap-global-set "C-c i n" #'nerd-icons-insert)
|
||||
#+end_src
|
||||
|
||||
*** TODO Font ligatures
|
||||
#+begin_src emacs-lisp
|
||||
(use-package ligature
|
||||
:ensure t
|
||||
:diminish
|
||||
:config
|
||||
(ligature-set-ligatures
|
||||
'(text-mode prog-mode org-mode)
|
||||
'("<--" "<---" "<<-" "<-" "->" "->>" "-->" "--->"
|
||||
"<==" "<===" "<<=" "<=" "=>" "=>>" "==>" "===>"
|
||||
"<->" "<-->" "<--->" "<---->" "<=>" "<==>" "<===>" "<====>" "::" ":::"
|
||||
"<~~" "</" "</>" "/>" "~~>" "==" "!=" "<>" "===" "!==" "!==="
|
||||
"<:" ":=" "*=" "*+" "<*" "<*>" "*>" "<|" "<|>" "|>" "+*" "=*" "=:" ":>"
|
||||
"/*" "*/" "+++" "<!--" "<!---"))
|
||||
(global-ligature-mode +1))
|
||||
#+end_src
|
||||
** Window management
|
||||
|
||||
*** windmove
|
||||
|
@ -342,22 +358,6 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia
|
|||
:custom
|
||||
(ediff-window-setup-function #'ediff-setup-windows-plain))
|
||||
#+end_src
|
||||
** TODO Font ligatures
|
||||
#+begin_src emacs-lisp
|
||||
(use-package ligature
|
||||
:ensure t
|
||||
:diminish
|
||||
:config
|
||||
(ligature-set-ligatures
|
||||
'(text-mode prog-mode org-mode)
|
||||
'("<--" "<---" "<<-" "<-" "->" "->>" "-->" "--->"
|
||||
"<==" "<===" "<<=" "<=" "=>" "=>>" "==>" "===>"
|
||||
"<->" "<-->" "<--->" "<---->" "<=>" "<==>" "<===>" "<====>" "::" ":::"
|
||||
"<~~" "</" "</>" "/>" "~~>" "==" "!=" "<>" "===" "!==" "!==="
|
||||
"<:" ":=" "*=" "*+" "<*" "<*>" "*>" "<|" "<|>" "|>" "+*" "=*" "=:" ":>"
|
||||
"/*" "*/" "+++" "<!--" "<!---"))
|
||||
(global-ligature-mode +1))
|
||||
#+end_src
|
||||
** Notifications
|
||||
#+begin_src emacs-lisp
|
||||
(use-package alert
|
||||
|
|
Loading…
Reference in a new issue