summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2022-07-03 23:50:48 -0400
committerJohn Turner <jturner.usa@gmail.com>2022-07-03 23:50:48 -0400
commita3d4916c40a3ec1d5a4d51502d89619434ea3ce7 (patch)
tree064f8e743e79ba44c50fc1ad98d498683d023e80
parentfa40958eae28183d397fb502d7caa27c3c8fcc62 (diff)
downloademacs.d-a3d4916c40a3ec1d5a4d51502d89619434ea3ce7.tar.gz
restored man config module
-rw-r--r--config/man/config-man.el3
-rw-r--r--load-config.el2
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)