diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-11-16 18:41:00 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-11-16 18:41:00 -0500 |
commit | 55cfcd9540878bd6fd387509a79916e2b14bb8e8 (patch) | |
tree | 53bb28a43685693a3daa3ecd3212ff8e750f953a | |
parent | df85ce1b98a18cffd7e1e2eda285daa9f8803244 (diff) | |
download | emacs.d-55cfcd9540878bd6fd387509a79916e2b14bb8e8.tar.gz |
Add .tramp_history to dired-omit-files
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1325,7 +1325,8 @@ (and bol ".gitignore" eol) (and bol "__pycache__" eol) (and bol ".Rhistory" eol) - (and bol ".snakemake" eol)))) + (and bol ".snakemake" eol) + (and bol ".tramp_history" eol)))) (setq dired-omit-extensions (append dired-omit-extensions |