Compare commits
4 Commits
1061c2ec49
...
9bb08ed607
Author | SHA1 | Date | |
---|---|---|---|
|
9bb08ed607 | ||
|
38db53be4c | ||
|
b9c6ea569b | ||
|
f2e62a5c84 |
@ -9,4 +9,14 @@
|
||||
:config
|
||||
(evil-collection-view-setup))
|
||||
|
||||
(use-package simple
|
||||
:straight (:type built-in)
|
||||
:general
|
||||
(normal special-mode-map
|
||||
"gr" #'revert-buffer
|
||||
"q" #'quit-window)
|
||||
(normal messages-buffer-mode-map
|
||||
"gr" #'revert-buffer
|
||||
"q" #'quit-window))
|
||||
|
||||
(provide 'init-built-ins)
|
||||
|
@ -15,6 +15,7 @@
|
||||
(unless (file-remote-p default-directory)
|
||||
(auto-revert-mode))))
|
||||
(add-hook 'dired-sidebar-mode-hook #'hide-mode-line-mode)
|
||||
(add-hook 'dired-sidebar-mode-hook (lambda () (display-line-numbers-mode -1)))
|
||||
:general
|
||||
(leader-map "d" #'dired-sidebar-toggle-sidebar)
|
||||
:custom
|
||||
|
14
emacs/.emacs.d/config/init-help.el
Normal file
14
emacs/.emacs.d/config/init-help.el
Normal file
@ -0,0 +1,14 @@
|
||||
;; Emacs has fanstastic built-in help features, but they could be more convenient
|
||||
|
||||
(use-package info
|
||||
:straight (:type built-in)
|
||||
:config
|
||||
(evil-collection-info-setup))
|
||||
|
||||
(use-package helpful
|
||||
:general
|
||||
([remap describe-function] #'helpful-callable)
|
||||
([remap describe-variable] #'helpful-variable)
|
||||
([remap describe-key] #'helpful-key))
|
||||
|
||||
(provide 'init-help)
|
@ -23,7 +23,8 @@
|
||||
(use-package exec-path-from-shell
|
||||
:hook (after-init . exec-path-from-shell-initialize)
|
||||
:custom
|
||||
(exec-path-from-shell-variables '("PATH" "MANPATH" "LEDGER_FILE" "LOLA_HOME"
|
||||
(exec-path-from-shell-variables
|
||||
'("PATH" "MANPATH" "LEDGER_FILE" "LOLA_HOME"
|
||||
"MODELS_HOME" "LOLA_TRAVEL_SERVICE_HOME" "WORKON_HOME"
|
||||
"PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV"
|
||||
"PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE"
|
||||
@ -56,6 +57,7 @@
|
||||
(require 'init-git)
|
||||
(require 'init-ide)
|
||||
(require 'init-eshell)
|
||||
(require 'init-help)
|
||||
|
||||
;; Load the custom file
|
||||
(when (file-exists-p custom-file)
|
||||
|
Loading…
Reference in New Issue
Block a user