spacemacs/layers/+lang/go/config.el

24 lines
725 B
EmacsLisp
Raw Normal View History

2017-02-01 14:06:00 +00:00
;;; config.el --- Go Layer config File for Spacemacs
2015-04-01 02:24:01 +00:00
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
2015-04-01 02:24:01 +00:00
;;
;; 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|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.")
2016-05-04 05:25:19 +00:00
(defvar go-use-gometalinter nil
"Use gometalinter if the variable has non-nil value.")