updating doom quit readme

This commit is contained in:
Jeetaditya Chatterjee 2020-08-22 01:00:55 +01:00
parent f6f90c9791
commit 940d5b3669

View file

@ -16,7 +16,8 @@
- [[#mathematical-symbols-replacement][Mathematical symbols replacement]]
- [[#coding-ligatures][Coding ligatures]]
- [[#configuration][Configuration]]
- [[#set-ligatures][~set-ligatures!~]]
- [[#setting-liagtures][Setting liagtures]]
- [[#changing-ligatures][changing ligatures]]
- [[#troubleshooting][Troubleshooting]]
* Description
@ -102,7 +103,117 @@ Even though harfbuzz has been included in emacs 27, there is currently a [[https
emacs 27.
* TODO Configuration
** TODO ~set-ligatures!~
** Setting liagtures
If you want to set ligatures for modules that don't have them by default you can
use the ~set-ligatures!~ macro in your config.el file
#+BEGIN_SRC emacs-lisp
(after! major-mode
(set-ligatures! 'major-mode
:symbol "keyword"))
#+END_SRC
eg.
#+BEGIN_SRC emacs-lisp
(after! go-mode
(set-ligatures! 'go-mode
:def "func" ; function keyword
:true "true" :false "false"
; this will replace not only definitions
; but coresponding functions aswell
:int "int" :str "string"
:float "float" :bool "bool"
:for "for"
:return "return" :yeild "yeild"))
#+END_SRC
you can set these symbols out of the box
#+BEGIN_SRC emacs-lisp
(set-ligatures! 'mode
;; Functional
:lambda "lambda keyword"
:def "function keyword"
:composition "composition"
:map "map/dictionary keyword"
;; Types
:null "null type"
:true "true keyword"
:false "false keyword"
:int "int keyword"
:float "float keyword"
:str "string keyword"
:bool "boolean keywork"
:list "list keyword"
;; Flow
:not "not operator"
:in "in operator"
:not-in "not in operator"
:and "and keyword"
:or "or keyword"
:for "for keyword"
:some "some keyword"
:return "return"
:yield "yeild"
;; Other
:union ""
:intersect "∩"
:diff ""
:tuple "⨂"
:pipe "" ;; FIXME: find a non-private char
:dot "•")
#+END_SRC
if you have multiple versions of the same keyword you can set the symbol twice
#+BEGIN_SRC emacs-lisp
(set-ligatures! scala-mode
:null "none"
:null "None")
#+END_SRC
** changing ligatures
if you don't like the symbols chosen you can change them by using...
#+BEGIN_SRC emacs-lisp
; you don't need to include all of them you can pick and mix
(setq +ligatures-extra-symbols
'(;; org
:name "»"
:src_block "»"
:src_block_end "«"
:quote "“"
:quote_end "”"
;; Functional
:lambda "λ"
:def "ƒ"
:composition "∘"
:map "↦"
;; Types
:null "∅"
:true "𝕋"
:false "𝔽"
:int ""
:float ""
:str "𝕊"
:bool "𝔹"
:list "𝕃"
;; Flow
:not "¬"
:in "∈"
:not-in "∉"
:and "∧"
:or ""
:for "∀"
:some "∃"
:return "⟼"
:yield "⟻"
;; Other
:union ""
:intersect "∩"
:diff ""
:tuple "⨂"
:pipe "" ;; FIXME: find a non-private char
:dot "•"))
;; you could also add your own if you want
#+END_SRC
* TODO Troubleshooting
# Common issues and their solution, or places to look for help.