diff options
-rw-r--r-- | emacs/custom/fcuny-prog.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-prog.el b/emacs/custom/fcuny-prog.el index d291f5d..c6cbdf9 100644 --- a/emacs/custom/fcuny-prog.el +++ b/emacs/custom/fcuny-prog.el @@ -16,6 +16,12 @@ (company-tooltip-limit 12) (company-idle-delay 1)) +(use-package lispy + :ensure t + :config + (dolist (hook '(emacs-lisp-mode-hook)) + (add-hook hook #'lispy-mode))) + ;; we need to install the following tools: ;; go get golang.org/x/tools/gopls@latest ;; go get golang.org/x/lint/golint@latest |