system changes
This commit is contained in:
parent
4108c97606
commit
6546bf57c0
1 changed files with 20 additions and 0 deletions
|
@ -537,6 +537,26 @@ Configure a convenient startup profiler.
|
||||||
(setq esup-depth 0))
|
(setq esup-depth 0))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
Show previews in =dired=.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package dired-preview
|
||||||
|
:init
|
||||||
|
(setq dired-preview-delay 0.7
|
||||||
|
dired-preview-max-size (expt 2 20)
|
||||||
|
dired-preview-ignored-extensions-regexp (concat
|
||||||
|
"\\."
|
||||||
|
"\\(gz\\|"
|
||||||
|
"zst\\|"
|
||||||
|
"tar\\|"
|
||||||
|
"xz\\|"
|
||||||
|
"rar\\|"
|
||||||
|
"zip\\|"
|
||||||
|
"iso\\|"
|
||||||
|
"epub"
|
||||||
|
"\\)"))
|
||||||
|
(dired-preview-global-mode 1))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
Allow multiple cursors.
|
Allow multiple cursors.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package multiple-cursors
|
(use-package multiple-cursors
|
||||||
|
|
Loading…
Add table
Reference in a new issue