diff options
author | John Turner <jturner.usa@gmail.com> | 2022-07-03 23:50:48 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2022-07-03 23:50:48 -0400 |
commit | a3d4916c40a3ec1d5a4d51502d89619434ea3ce7 (patch) | |
tree | 064f8e743e79ba44c50fc1ad98d498683d023e80 | |
parent | fa40958eae28183d397fb502d7caa27c3c8fcc62 (diff) | |
download | emacs.d-a3d4916c40a3ec1d5a4d51502d89619434ea3ce7.tar.gz |
restored man config module
-rw-r--r-- | config/man/config-man.el | 3 | ||||
-rw-r--r-- | load-config.el | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/config/man/config-man.el b/config/man/config-man.el new file mode 100644 index 0000000..b4c5060 --- /dev/null +++ b/config/man/config-man.el @@ -0,0 +1,3 @@ +(setq Man-notify-method 'pushy) + +(provide 'config-man) diff --git a/load-config.el b/load-config.el index 9e7beb7..4e34a2d 100644 --- a/load-config.el +++ b/load-config.el @@ -10,6 +10,7 @@ (add-to-list 'load-path (file-name-concat config-directory "flymake")) (add-to-list 'load-path (file-name-concat config-directory "garbage-collection")) (add-to-list 'load-path (file-name-concat config-directory "keys")) + (add-to-list 'load-path (file-name-concat config-directory "man")) (add-to-list 'load-path (file-name-concat config-directory "lsp-mode")) (add-to-list 'load-path (file-name-concat config-directory "native-comp")) (add-to-list 'load-path (file-name-concat config-directory "package")) @@ -30,6 +31,7 @@ (require 'config-flymake) (require 'config-garbage-collection) (require 'config-keys) +(require 'config-man) (require 'config-package) (require 'config-project) (require 'config-recentf) |