spacemacs/layers/+lang/go/config.el
syl20bnr 9066d073b2 Fix (void-variable spacemacs-jump-handlers-....)
Move the variable definitions to config.el and eval-after-load the
key binding on SPC m g g.
2016-09-04 22:31:47 -04:00

26 lines
774 B
EmacsLisp

;;; packages.el --- Go Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; variables
(spacemacs|defvar-company-backends go-mode)
(spacemacs|define-jump-handlers go-mode godef-jump)
(defvar go-use-gocheck-for-testing nil
"If using gocheck for testing when running the tests -check.f will be used instead of -run to specify the test that will be ran. Gocheck is mandatory for testing suites.")
(defvar go-tab-width 8
"Set the `tab-width' in Go mode. Default is 8.")
(defvar go-use-gometalinter nil
"Use gometalinter if the variable has non-nil value.")