Compare commits
4 Commits
1061c2ec49
...
9bb08ed607
Author | SHA1 | Date | |
---|---|---|---|
|
9bb08ed607 | ||
|
38db53be4c | ||
|
b9c6ea569b | ||
|
f2e62a5c84 |
@ -9,4 +9,14 @@
|
|||||||
:config
|
:config
|
||||||
(evil-collection-view-setup))
|
(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)
|
(provide 'init-built-ins)
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
(unless (file-remote-p default-directory)
|
(unless (file-remote-p default-directory)
|
||||||
(auto-revert-mode))))
|
(auto-revert-mode))))
|
||||||
(add-hook 'dired-sidebar-mode-hook #'hide-mode-line-mode)
|
(add-hook 'dired-sidebar-mode-hook #'hide-mode-line-mode)
|
||||||
|
(add-hook 'dired-sidebar-mode-hook (lambda () (display-line-numbers-mode -1)))
|
||||||
:general
|
:general
|
||||||
(leader-map "d" #'dired-sidebar-toggle-sidebar)
|
(leader-map "d" #'dired-sidebar-toggle-sidebar)
|
||||||
:custom
|
: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,11 +23,12 @@
|
|||||||
(use-package exec-path-from-shell
|
(use-package exec-path-from-shell
|
||||||
:hook (after-init . exec-path-from-shell-initialize)
|
:hook (after-init . exec-path-from-shell-initialize)
|
||||||
:custom
|
:custom
|
||||||
(exec-path-from-shell-variables '("PATH" "MANPATH" "LEDGER_FILE" "LOLA_HOME"
|
(exec-path-from-shell-variables
|
||||||
"MODELS_HOME" "LOLA_TRAVEL_SERVICE_HOME" "WORKON_HOME"
|
'("PATH" "MANPATH" "LEDGER_FILE" "LOLA_HOME"
|
||||||
"PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV"
|
"MODELS_HOME" "LOLA_TRAVEL_SERVICE_HOME" "WORKON_HOME"
|
||||||
"PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE"
|
"PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV"
|
||||||
"PLAID_CLIENT_ID" "PLAID_SECRET" "PLAID_ENVIRONMENT"))
|
"PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE"
|
||||||
|
"PLAID_CLIENT_ID" "PLAID_SECRET" "PLAID_ENVIRONMENT"))
|
||||||
(exec-path-from-shell-check-startup-files nil))
|
(exec-path-from-shell-check-startup-files nil))
|
||||||
|
|
||||||
|
|
||||||
@ -56,6 +57,7 @@
|
|||||||
(require 'init-git)
|
(require 'init-git)
|
||||||
(require 'init-ide)
|
(require 'init-ide)
|
||||||
(require 'init-eshell)
|
(require 'init-eshell)
|
||||||
|
(require 'init-help)
|
||||||
|
|
||||||
;; Load the custom file
|
;; Load the custom file
|
||||||
(when (file-exists-p custom-file)
|
(when (file-exists-p custom-file)
|
||||||
|
Loading…
Reference in New Issue
Block a user