emacs/ranger: add ranger module to doom

This commit is contained in:
Ting Zhou 2018-12-05 17:23:40 -08:00
parent 9ccb55ad44
commit b00ce82ef9
5 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,12 @@
;;; private/ranger/autoload.el -*- lexical-binding: t; -*-
;;;###autoload
(defun +my/dired-setup ()
(setq dired-omit-verbose nil)
(make-local-variable 'dired-hide-details-hide-symlink-targets)
(setq dired-hide-details-hide-symlink-targets nil)
;; hide details by default
(dired-hide-details-mode t)
;; omit the .. in dired
(dired-omit-mode t))