summaryrefslogtreecommitdiff
path: root/lisp/lisp.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-10-21 07:41:42 -0400
committermattkae <mattkae@protonmail.com>2022-10-21 07:41:42 -0400
commit8ba3ffad71c8854c3a0bfe4d9bda6ab221da439f (patch)
treed69c0d0c7f22fb14930a2f981021c52cc658ac47 /lisp/lisp.el
parentb2faaae5840a3a134e24ae24eb65593669098039 (diff)
Refreshing the window and navigating back to current buffer after file ops
Diffstat (limited to 'lisp/lisp.el')
-rw-r--r--lisp/lisp.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/lisp.el b/lisp/lisp.el
index c313d53..01199ca 100644
--- a/lisp/lisp.el
+++ b/lisp/lisp.el
@@ -7,6 +7,10 @@
(company-mode t)
)
+(require 'projectile)
+(with-eval-after-load 'projectile
+ (add-to-list 'projectile-globally-ignored-directories "elpa"))
+
(add-hook 'emacs-lisp-mode-hook 'setup-lisp)
(provide 'lisp)
;;; lisp.el ends here