aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--oni-python/oni-python.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/oni-python/oni-python.el b/oni-python/oni-python.el
index c88e7b4..9e8c9c2 100644
--- a/oni-python/oni-python.el
+++ b/oni-python/oni-python.el
@@ -76,6 +76,7 @@ for indentation."
(setq-local whitespace-style '(face tabs))
(whitespace-mode))
+;;;###autoload
(defun oni-python--enable-hooks (hook)
(add-hook hook 'company-mode)
(add-hook hook 'display-fill-column-indicator-mode)
@@ -101,7 +102,7 @@ for indentation."
;;;###autoload
(when (and (functionp 'treesit-available-p)
(treesit-available-p)
- (require 'treesit)
+ (require 'treesit)
(treesit-ready-p 'python))
(add-to-list 'major-mode-remap-alist '(python-mode . python-ts-mode))
(oni-python--enable-hooks 'python-ts-mode-hook))