diff options
author | Amin Bandali <bandali@gnu.org> | 2019-06-17 18:41:54 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-06-17 18:41:54 -0400 |
commit | 9424b3d6cbc92a6e2f732bad825fa27cfc4a79a3 (patch) | |
tree | 1f1066bdd2226432fe2b21958bf1a48fae4c35ff | |
parent | 837a23a5388fb6f55a718546a542a91901f0b7dd (diff) | |
download | configs-9424b3d6cbc92a6e2f732bad825fa27cfc4a79a3.tar.gz configs-9424b3d6cbc92a6e2f732bad825fa27cfc4a79a3.tar.xz configs-9424b3d6cbc92a6e2f732bad825fa27cfc4a79a3.zip |
emacs: recentf: stop excluding tramp files
-rw-r--r-- | .emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index fe8502f..4846e5d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -657,7 +657,7 @@ For disabling the behaviour for certain buffers and/or modes." (use-feature recentf :defer 0.2 :config - (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") + ;; (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") (setq recentf-max-saved-items 2000)) ;; smart M-x enhancement (needed by counsel for history) |