From 4fc03fd0640e7887af5cd5e87e9b14af33d87de0 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Tue, 20 Aug 2024 23:06:47 -0400 Subject: [PATCH] Set tab-always-indent to 'complete --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 83d7502..912bc36 100644 --- a/init.el +++ b/init.el @@ -278,7 +278,8 @@ (setq-default indent-tabs-mode nil tab-width 4) -(setq-default tab-always-indent t) +;; Enable indentation and completion using the TAB key +(setq-default tab-always-indent 'complete) ;; Enable multi-line commenting which ensures that `comment-indent-new-line' ;; properly continues comments onto new lines, which is useful for writing