aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Wilken2024-01-24 14:13:16 +0100
committerTimo Wilken2024-01-24 14:14:20 +0100
commitff7f431a5ee76a96b92e4256f4dbef9ba13c35af (patch)
tree7d589ecfcc515615b0f8c019810ac797a2b31c37
parent076532d9119b690aa7e5d8878e9c8682a042b11c (diff)
Fix syntax for setting Emacs completion-styles
-rw-r--r--tw/home/files/emacs-init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/tw/home/files/emacs-init.el b/tw/home/files/emacs-init.el
index bd821faf..2912a16d 100644
--- a/tw/home/files/emacs-init.el
+++ b/tw/home/files/emacs-init.el
@@ -49,7 +49,7 @@ If CREATE is true and the resulting directory does not exist, create it."
(electric-pair-mode t "Auto-pair suitable characters like parentheses.")
(tab-always-indent complete "Enable completion-on-tab.")
(completion-cycle-threshold 6 "Allow cycling through completions if there are 6 or fewer of them.")
- (completion-styles '(basic partial-completion) "Enable fast completion styles.")
+ (completion-styles (basic partial-completion) "Enable fast completion styles.")
(shell-kill-buffer-on-exit t "Kill *shell* buffers as soon as their shell session exits.")
;; Indentation, formatting.
(indent-tabs-mode nil "Always use spaces to indent.")