aboutsummaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2016-09-11 11:47:46 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2016-09-11 11:47:46 +0200
commitb36fc1f270649ebb54324cbff13d7afc5cf92ad7 (patch)
treeaef744879d0651adf99d4602d19c9ce4eb8fe7ba /emacs
parent9bd6b8e986d1c4f25943dc49e94b0d4e5dcef3e7 (diff)
downloaddotfiles-b36fc1f270649ebb54324cbff13d7afc5cf92ad7.tar.gz
dotfiles-b36fc1f270649ebb54324cbff13d7afc5cf92ad7.zip
emacs: added go-add-tags
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index fe4803e..98661dc 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -494,7 +494,12 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(use-package go-eldoc
:ensure t
:config
- (require 'go-eldoc)))
+ (require 'go-eldoc))
+
+ (use-package go-add-tags
+ :ensure t
+ :config
+ (evil-leader/set-key "t" 'go-add-tags)))
;; Go
(use-package go-mode