diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-11 02:10:05 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-11 02:10:05 +0200 |
commit | 5d6467ae1e359313442b1477520800694302588f (patch) | |
tree | 2e5d92478518713d5104f3c84816407e014586da | |
parent | c9b882220d5663d1330fedd74bc65db7372be879 (diff) |
emacs: Add missing parenthesis
-rw-r--r-- | .config/emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index df03f66..4cc640c 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -622,7 +622,7 @@ font name, font weight, and font height in that order.") :init (defvar x-ligatures-alist '(((c-mode go-ts-mode) . ("<=" ">=" "==" "!=" "*=" "__")) - (c-mode . ("->") + (c-mode . ("->")) (go-ts-mode . (":=" "<-")) ((html-mode html-ts-mode) . ("<!--" "-->" "/>"))) "Ligatures to enable in specific modes. |