summary refs log tree commit diff
path: root/emacs.d/config/fcuny-go.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-07-17 15:12:36 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-07-17 15:12:36 -0700
commita7c44d60af86479436f19d151fd93f4658892d76 (patch)
treedbc2c20680da02f662863becf5c642a54bd3eb07 /emacs.d/config/fcuny-go.el
parent[emacs] Set font per operating system. (diff)
downloademacs.d-a7c44d60af86479436f19d151fd93f4658892d76.tar.gz
[emacs] Simplify the configuration
Reduce the number of configuration files.
Diffstat (limited to 'emacs.d/config/fcuny-go.el')
-rw-r--r--emacs.d/config/fcuny-go.el44
1 files changed, 0 insertions, 44 deletions
diff --git a/emacs.d/config/fcuny-go.el b/emacs.d/config/fcuny-go.el
deleted file mode 100644
index dc0cd8b..0000000
--- a/emacs.d/config/fcuny-go.el
+++ /dev/null
@@ -1,44 +0,0 @@
-(eval-when-compile
-  (require 'use-package))
-
-(use-package go-mode
-  :ensure t
-  :after (company flycheck)
-  :preface
-  (defun fcuny/go-mode-setup ()
-    (add-hook 'go-mode-hook 'flycheck-mode)
-    (setq-default)
-    (setq tab-width 2))
-  :config
-  (add-hook 'go-mode-hook #'fcuny/go-mode-setup))
-
-(use-package go-eldoc
-  :after go-mode
-  :ensure t
-  :hook (go-mode . go-eldoc-setup))
-
-(use-package gotest
-  :ensure t)
-
-(use-package go-guru
-  :ensure t)
-
-(use-package go-imports
-  :ensure t)
-
-(use-package golint
-  :ensure t)
-
-(use-package go-projectile
-  :ensure t)
-
-(use-package company-go
-  :ensure t
-  :after (company go-mode)
-  :custom
-  (company-go-show-annotation t)
-  :config
-  (add-hook 'go-mode-hook 'company-mode)
-  (add-to-list 'company-backends 'company-go))
-
-(provide 'fcuny-go)