Updates to dired, magit, proced, etc.
This commit is contained in:
parent
d62023c144
commit
26cbb9c985
28
init.el
28
init.el
@ -235,9 +235,33 @@
|
||||
:init
|
||||
(set eldoc-echo-area-use-multiline-p nil))
|
||||
|
||||
;; vterm
|
||||
(use-package vterm
|
||||
:bind (:map evil-normal-state-map
|
||||
("M-v" . vterm)))
|
||||
:bind ("M-RET" . vterm))
|
||||
|
||||
;; proced
|
||||
(use-package proced
|
||||
:bind ("C-x o" . proced)
|
||||
:init
|
||||
(evil-define-key '(normal visual motion) proced-mode-map
|
||||
"zf" #'proced-filter-interactive
|
||||
"zF" #'proced-format-interactive)
|
||||
(setq proced-auto-update-flag t
|
||||
proced-auto-update-interval 1))
|
||||
|
||||
;; dired
|
||||
(use-package dired
|
||||
:ensure nil
|
||||
:init
|
||||
(evil-define-key '(normal visual motion) dired-mode-map
|
||||
"u" #'dired-unmark
|
||||
"U" #'dired-unmark-all-marks)
|
||||
(evil-define-key '(normal visual motion) wdired-mode-map
|
||||
"u" #'dired-unmark
|
||||
"U" #'dired-unmark-all-marks))
|
||||
|
||||
;; magit
|
||||
(use-package magit)
|
||||
|
||||
;; Theme (doom-themes)
|
||||
(use-package doom-themes
|
||||
|
Loading…
Reference in New Issue
Block a user