diff options
author | EuAndreh <eu@euandre.org> | 2018-07-16 23:20:15 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-16 23:20:58 -0300 |
commit | 609fba78862d0dc65da1bc38c69a2eaa30115d93 (patch) | |
tree | e17bf2413d72ae8551f5830a39a02006916d16a5 | |
parent | Initial working version of notmuch Emacs email client (diff) | |
download | dotfiles-609fba78862d0dc65da1bc38c69a2eaa30115d93.tar.gz dotfiles-609fba78862d0dc65da1bc38c69a2eaa30115d93.tar.xz |
Add debbugs and key-chord packages
-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 () |