remove unnecessary font stuff
This commit is contained in:
parent
6451e0a8cf
commit
7ab0ade216
3 changed files with 63 additions and 16 deletions
10
init.el
10
init.el
|
@ -310,9 +310,9 @@
|
|||
;; __ ___ ____ _|_ __|____|_
|
||||
("_" (rx (+ (or "_" "|"))))
|
||||
;; Fira code: 0xFF 0x12
|
||||
("0" (rx (and "x" (+ (in "A-F" "a-f" "0-9")))))
|
||||
;; ("0" (rx (and "x" (+ (in "A-F" "a-f" "0-9")))))
|
||||
;; Fira code:
|
||||
"Fl" "Tl" "fi" "fj" "fl" "ft"
|
||||
;; "Fl" "Tl" "fi" "fj" "fl" "ft"
|
||||
;; The few not covered by the regexps.
|
||||
"{|" "[|" "]#" "(*" "}#" "$>" "^="))
|
||||
;; Enables ligature checks globally in all buffers. You can also do it
|
||||
|
@ -472,6 +472,7 @@
|
|||
"ov" '(vterm :which-key "vterm")
|
||||
"wo" '(other-window :which-key "other window")
|
||||
"wn" '(evil-window-next :which-key "other window")
|
||||
"wm" '(maximize-window :which-key "maximize window")
|
||||
"wd" '(delete-window :which-key "other window")
|
||||
"wv" '(evil-window-vsplit :which-key "split window vertically")
|
||||
"ws" '(evil-window-split :which-key "split window horizontally")
|
||||
|
@ -486,7 +487,8 @@
|
|||
";" '(execute-extended-command :which-key "execute command")
|
||||
"d" '(execute-extended-command :which-key "execute command")
|
||||
"&" '(async-shell-command :which-key "async shell command")
|
||||
":" '(eval-expression :which-key "evaluate expression"))
|
||||
":" '(eval-expression :which-key "evaluate expression")
|
||||
"gc" '(project-compile :which-key "compile project"))
|
||||
(chris/leader-keys
|
||||
:states 'normal
|
||||
:keymaps 'lisp-mode
|
||||
|
@ -2551,7 +2553,7 @@ targets."
|
|||
"gt" 'rustic-cargo-test)
|
||||
(chris/leader-keys
|
||||
:states 'normal
|
||||
:keymaps '(rustic-mode override)
|
||||
:keymaps '(rustic-mode)
|
||||
"gc" 'rustic-compile
|
||||
"gr" 'projectile-run-project
|
||||
"si" 'consult-imenu-multi))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue