.
This commit is contained in:
parent
bc67e83ebb
commit
c0069f400e
1 changed files with 32 additions and 31 deletions
|
@ -231,32 +231,32 @@
|
||||||
:config
|
:config
|
||||||
(unicode-fonts-setup))
|
(unicode-fonts-setup))
|
||||||
|
|
||||||
(use-package ligature
|
;; (use-package ligature
|
||||||
:config
|
;; :config
|
||||||
(ligature-set-ligatures
|
;; (ligature-set-ligatures
|
||||||
't
|
;; 't
|
||||||
'(";;"
|
;; '(";;"
|
||||||
;; SS01
|
;; ;; SS01
|
||||||
"==" "===" "=/=" "!=" "!==" "/=" "/==" "~~" "=~" "!~"
|
;; "==" "===" "=/=" "!=" "!==" "/=" "/==" "~~" "=~" "!~"
|
||||||
;; SS02
|
;; ;; SS02
|
||||||
">=" "<="
|
;; ">=" "<="
|
||||||
;; SS03
|
;; ;; SS03
|
||||||
"->" "<-" "=>" "<!--" "-->" "<~" "<~~" "~>" "~~>" "<~>"
|
;; "->" "<-" "=>" "<!--" "-->" "<~" "<~~" "~>" "~~>" "<~>"
|
||||||
;; SS04
|
;; ;; SS04
|
||||||
"</" "/>" "</>" "/\\" "\\/"
|
;; "</" "/>" "</>" "/\\" "\\/"
|
||||||
;; SS05
|
;; ;; SS05
|
||||||
"|>" "<|"
|
;; "|>" "<|"
|
||||||
;; SS06
|
;; ;; SS06
|
||||||
"##" "###"
|
;; "##" "###"
|
||||||
;; SS07
|
;; ;; SS07
|
||||||
"***" "/*" "*/" "/*/" "(*" "*)" "(*)"
|
;; "***" "/*" "*/" "/*/" "(*" "*)" "(*)"
|
||||||
;; SS08
|
;; ;; SS08
|
||||||
".=" ".-" "..<"
|
;; ".=" ".-" "..<"
|
||||||
;; CALT
|
;; ;; CALT
|
||||||
"//" "///" "&&" "!!" "??" "?." "?:" "||" "::" ":::" ";;" ".." "..." "=!=" "#=" ":=" "=:" "=:="
|
;; "//" "///" "&&" "!!" "??" "?." "?:" "||" "::" ":::" ";;" ".." "..." "=!=" "#=" ":=" "=:" "=:="
|
||||||
":>" ">:" "<:" ":<" "..=" "..-"
|
;; ":>" ">:" "<:" ":<" "..=" "..-"
|
||||||
))
|
;; ))
|
||||||
(global-ligature-mode nil))
|
;; (global-ligature-mode nil))
|
||||||
|
|
||||||
(set-frame-parameter nil 'alpha-background 90)
|
(set-frame-parameter nil 'alpha-background 90)
|
||||||
(add-to-list 'default-frame-alist '(alpha-background . 90))
|
(add-to-list 'default-frame-alist '(alpha-background . 90))
|
||||||
|
@ -631,6 +631,7 @@ Point must be at the beginning of balanced expression (sexp)."
|
||||||
#'cc/barf-forward))
|
#'cc/barf-forward))
|
||||||
:hook
|
:hook
|
||||||
clojure-ts-mode
|
clojure-ts-mode
|
||||||
|
clojure-mode
|
||||||
emacs-lisp-mode
|
emacs-lisp-mode
|
||||||
scheme-mode)
|
scheme-mode)
|
||||||
|
|
||||||
|
@ -804,11 +805,11 @@ Point must be at the beginning of balanced expression (sexp)."
|
||||||
:hook
|
:hook
|
||||||
(clojure-mode . (lambda ()
|
(clojure-mode . (lambda ()
|
||||||
(setq-local prettify-symbols-alist
|
(setq-local prettify-symbols-alist
|
||||||
'(("(fn " . "(λ ")
|
'(("fn" . "λ")
|
||||||
("(comp " . "(∘ ")
|
("comp" . "∘")
|
||||||
("(and " . "(∧ ")
|
("and" . "∧")
|
||||||
("(or " . "(∨ ")
|
("or" . "∨")
|
||||||
("(not " . "(¬ "))))))
|
("not" . "¬"))))))
|
||||||
|
|
||||||
(use-package cider
|
(use-package cider
|
||||||
;; :elpaca (:host github :repo "clojure-emacs/cider" :tag "v1.12.0")
|
;; :elpaca (:host github :repo "clojure-emacs/cider" :tag "v1.12.0")
|
||||||
|
|
Loading…
Reference in a new issue