diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-11-02 22:31:59 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-11-02 22:31:59 +0100 |
commit | 0cf425d6fd957b4982dc17a54671da74953df71c (patch) | |
tree | 56be514a59183b86d91edcb4c0f50c014630e066 /.config/emacs/modules | |
parent | 9415455eb7a0d813546842c6d40e13b8471bc2e7 (diff) |
emacs: Configure file-name-shadow-mode
Diffstat (limited to '.config/emacs/modules')
-rw-r--r-- | .config/emacs/modules/mm-completion.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-completion.el b/.config/emacs/modules/mm-completion.el index 692e3d2..bebc224 100644 --- a/.config/emacs/modules/mm-completion.el +++ b/.config/emacs/modules/mm-completion.el @@ -70,6 +70,14 @@ (minibuffer-default-prompt-format " [%s]")) +;;; Hide Shadowed Filepaths + +(use-package rfn-eshadow + :hook (after-init . file-name-shadow-mode) + :custom + (file-name-shadow-properties '(invisible t intangilble t))) + + ;;; Completion Popups (use-package corfu |