diff options
-rw-r--r-- | spacemacs.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/spacemacs.el b/spacemacs.el index b4126d9..7856796 100644 --- a/spacemacs.el +++ b/spacemacs.el @@ -98,7 +98,9 @@ This function should only modify configuration layer settings." ;; Also include the dependencies as they will not be resolved automatically. dotspacemacs-additional-packages '(paredit interleave - yasnippet-snippets) + yasnippet-snippets + debbugs + key-chord) ;; A list of packages that cannot be updated. dotspacemacs-frozen-packages '() @@ -853,6 +855,12 @@ This is the place where most of your configurations should be done. Unless it is (set-default-coding-systems 'utf-8) + (require 'key-chord) + (key-chord-mode 1) + (key-chord-define-global "qw" 'save-buffer) + (key-chord-define-global "qe" (lambda () + (interactive) + (save-some-buffers 1))) t) (defun dotspacemacs/emacs-custom-settings () |