summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index e0efc4d..94031ce 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -1106,6 +1106,14 @@
(add-hook 'scss-mode-hook #'electric-indent-local-mode)
#+END_SRC
+ - Enable auto-completion
+
+ #+BEGIN_SRC emacs-lisp
+ (declare-function auto-complete-mode "auto-complete")
+
+ (add-hook 'scss-mode-hook #'auto-complete-mode)
+ #+END_SRC
+
** Haml
- Automatically match parentheses and other delimiters.