diff options
-rw-r--r-- | smart-documents.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/smart-documents.org b/smart-documents.org index 5e63bd4..e724758 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -615,6 +615,13 @@ shortcomings. (add-hook 'text-mode-hook 'flyspell-mode) #+END_SRC +*** Completion + +#+BEGIN_SRC emacs-lisp :tangle yes + (use-package company) + (add-hook 'after-init-hook 'global-company-mode) +#+END_SRC + *** Insert template from keyword Thanks to ~yasnippet~, we can type certain keywords, then press =TAB=, |