26 lines
904 B
EmacsLisp
26 lines
904 B
EmacsLisp
;;; config.el --- Company mode configuration File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2014-2015 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
|
|
|
|
(defvar company-mode-enable-yas t
|
|
"If non nil enable yasnippet for all backends.")
|
|
|
|
(defvar company-mode-use-tab-instead-of-enter nil
|
|
"If non nil use tab instead of enter for completion in company-mode")
|
|
|
|
(defvar company-mode-completion-cancel-keywords '("do"
|
|
"then"
|
|
"begin"
|
|
"case")
|
|
"Keywords on which to cancel completion so that you can use RET
|
|
to complet without blocking common line endings.")
|