home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 9db297e2e1944dfafe46d8d9fef57e81d3335cf2
parent f1d36831f6b420b0e63a342459abc1b522b1da4c
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue,  7 Apr 2020 15:03:24 +0200

emacs: add ssh-config-mode and config-misc.el

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/emacs.nix | 1+
Dtools/emacs/config/config-help.el | 15---------------
Atools/emacs/config/config-misc.el | 28++++++++++++++++++++++++++++
3 files changed, 29 insertions(+), 15 deletions(-)

diff --git a/modules/profiles/emacs.nix b/modules/profiles/emacs.nix @@ -157,6 +157,7 @@ in org-super-agenda org-tree-slide shr-tag-pre-highlight + ssh-config-mode smartparens symbol-overlay undo-tree diff --git a/tools/emacs/config/config-help.el b/tools/emacs/config/config-help.el @@ -1,15 +0,0 @@ -;;; 02-help.el --- -*- lexical-binding: t -*- -;;; Commentary: -;;; help and info mode setup -;;; Code: -(use-package helpful - :unless noninteractive - :bind (("C-h f" . helpful-callable) - ("C-h F" . helpful-function) - ("C-h M" . helpful-macro) - ("C-c h S" . helpful-at-point) - ("C-h k" . helpful-key) - ("C-h v" . helpful-variable) - ("C-h C" . helpful-command))) - -;;; 02-help.el ends here diff --git a/tools/emacs/config/config-misc.el b/tools/emacs/config/config-misc.el @@ -0,0 +1,28 @@ +;;; config-misc.el --- -*- lexical-binding: t; -*- +;;; Commentary: +;;; Miscellaneous modes configuration +;;; Code: + +;; UseHelpful +(use-package helpful + :unless noninteractive + :bind (("C-h f" . helpful-callable) + ("C-h F" . helpful-function) + ("C-h M" . helpful-macro) + ("C-c h S" . helpful-at-point) + ("C-h k" . helpful-key) + ("C-h v" . helpful-variable) + ("C-h C" . helpful-command))) +;; -UseHelpful + +;; UseSSHConfig +(use-package ssh-config-mode + :commands (ssh-config-mode + ssh-authorized-keys-mode) + :mode ((".ssh/config\\'" . ssh-config-mode) + ("sshd?_config\\'" . ssh-config-mode) + ("known_hosts\\'" . ssh-known-hosts-mode) + ("authorized_keys2?\\'" . ssh-authorized-keys-mode))) +;; -UseSSHConfig + +;;; config-misc.el ends here