diff options
author | EuAndreh <eu@euandre.org> | 2018-07-25 14:49:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-25 14:49:51 -0300 |
commit | 3da034d08770f79795f72971734776788a1e579c (patch) | |
tree | 73be43a238eb654bd16291f3dc35fba28d27cb9b /spacemacs.el | |
parent | Disable nixos cronjob for now (diff) | |
download | dotfiles-3da034d08770f79795f72971734776788a1e579c.tar.gz dotfiles-3da034d08770f79795f72971734776788a1e579c.tar.xz |
WIP add guix-debbugs emacs command
Diffstat (limited to 'spacemacs.el')
-rw-r--r-- | spacemacs.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/spacemacs.el b/spacemacs.el index 8503cc9..74e6cf7 100644 --- a/spacemacs.el +++ b/spacemacs.el @@ -102,6 +102,7 @@ This function should only modify configuration layer settings." interleave yasnippet-snippets debbugs + ;; emacs-guix key-chord) ;; A list of packages that cannot be updated. dotspacemacs-frozen-packages '() @@ -535,7 +536,8 @@ dump." (action 1) - (tabular 'defun))) + (tabular 'defun) + (for-all 'defun))) (defun euandreh/clear-repl-and-eval () (interactive) @@ -580,6 +582,11 @@ dump." (when (file-exists-p path) (byte-compile-file path t)))) +(defun guix-debbugs-org () + (interactive) + ;; FIXME + (message "C-u M-x debbugs-gnu <RET> <RET> guix-patches <RET> n y")) + (defun dotspacemacs/user-config () "Configuration function for user code. This function is called at the very end of Spacemacs initialization after layers configuration. @@ -592,6 +599,7 @@ This is the place where most of your configurations should be done. Unless it is (projectile-cleanup-known-projects) (spacemacs/set-leader-keys + "GP" 'guix-debbugs-org "an" 'notmuch "/" 'engine/search-duck-duck-go "d" 'spacemacs/delete-window |