2015-04-03 04:28:13 +00:00
|
|
|
;;; packages.el --- Auto-completion Layer packages 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
|
|
|
|
|
2015-04-19 03:40:24 +00:00
|
|
|
(setq auto-completion-packages
|
2015-04-03 04:28:13 +00:00
|
|
|
'(
|
|
|
|
auto-complete
|
2015-04-23 02:03:04 +00:00
|
|
|
ac-ispell
|
|
|
|
company
|
|
|
|
helm-c-yasnippet
|
|
|
|
hippie-exp
|
|
|
|
yasnippet
|
2015-04-03 04:28:13 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
;; company-quickhelp from MELPA is not compatible with 24.3 anymore
|
|
|
|
(unless (version< emacs-version "24.4")
|
|
|
|
(push 'company-quickhelp auto-completion-packages))
|
|
|
|
|
|
|
|
(defun auto-completion/init-ac-ispell ()
|
|
|
|
(use-package ac-ispell
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(setq ac-ispell-requires 4)
|
2015-04-03 17:30:26 +00:00
|
|
|
(eval-after-load 'auto-complete
|
2015-04-03 04:28:13 +00:00
|
|
|
'(ac-ispell-setup))
|
|
|
|
;; (add-hook 'markdown-mode-hook 'ac-ispell-ac-setup)
|
|
|
|
)))
|
|
|
|
|
|
|
|
(defun auto-completion/init-auto-complete ()
|
|
|
|
(use-package auto-complete
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(setq ac-auto-start 0
|
|
|
|
ac-delay 0.2
|
|
|
|
ac-quick-help-delay 1.
|
|
|
|
ac-use-fuzzy t
|
|
|
|
ac-fuzzy-enable t
|
|
|
|
ac-comphist-file (concat spacemacs-cache-directory "ac-comphist.dat")
|
2015-04-03 17:30:26 +00:00
|
|
|
;; use 'complete when auto-complete is disabled
|
|
|
|
tab-always-indent 'complete
|
2015-04-03 04:28:13 +00:00
|
|
|
ac-dwim t)
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(require 'auto-complete-config)
|
2015-04-03 17:30:26 +00:00
|
|
|
(setq-default ac-sources '(ac-source-abbrev
|
|
|
|
ac-source-dictionary
|
|
|
|
ac-source-words-in-same-mode-buffers))
|
2015-04-03 23:13:52 +00:00
|
|
|
(when (configuration-layer/package-usedp 'yasnippet)
|
2015-04-03 04:28:13 +00:00
|
|
|
(push 'ac-source-yasnippet ac-sources))
|
|
|
|
(add-to-list 'completion-styles 'initials t)
|
|
|
|
(define-key ac-completing-map (kbd "C-j") 'ac-next)
|
|
|
|
(define-key ac-completing-map (kbd "C-k") 'ac-previous)
|
|
|
|
(define-key ac-completing-map (kbd "<S-tab>") 'ac-previous)
|
2015-04-06 20:02:14 +00:00
|
|
|
(spacemacs|diminish auto-complete-mode " ⓐ" " a"))))
|
2015-04-03 04:28:13 +00:00
|
|
|
|
|
|
|
(defun auto-completion/init-company ()
|
|
|
|
(use-package company
|
2015-04-09 12:09:00 +00:00
|
|
|
:defer t
|
2015-04-03 04:28:13 +00:00
|
|
|
:init
|
2015-04-06 20:49:53 +00:00
|
|
|
(progn
|
|
|
|
(setq company-idle-delay 0.2
|
|
|
|
company-minimum-prefix-length 2
|
|
|
|
company-require-match nil
|
|
|
|
company-dabbrev-ignore-case nil
|
|
|
|
company-dabbrev-downcase nil
|
|
|
|
company-tooltip-flip-when-above t
|
|
|
|
company-frontends '(company-pseudo-tooltip-frontend)
|
2015-04-09 03:57:22 +00:00
|
|
|
company-clang-prefix-guesser 'company-mode/more-than-prefix-guesser))
|
2015-04-03 04:28:13 +00:00
|
|
|
:config
|
|
|
|
(progn
|
2015-04-06 20:02:14 +00:00
|
|
|
(spacemacs|diminish company-mode " ⓐ" " a")
|
2015-04-03 04:28:13 +00:00
|
|
|
;; key bindings
|
2015-04-27 02:53:26 +00:00
|
|
|
;; use TAB to auto-complete instead of RET
|
|
|
|
(let ((map company-active-map))
|
|
|
|
(define-key map [return] 'nil)
|
|
|
|
(define-key map (kbd "RET") 'nil)
|
|
|
|
(define-key map [tab] 'company-complete-common)
|
|
|
|
(define-key map (kbd "TAB") 'company-complete-common)
|
|
|
|
(define-key map (kbd "<tab>") 'company-complete-common)
|
|
|
|
(define-key map [escape] 'company-abort)
|
|
|
|
(define-key map (kbd "C-j") 'company-select-next)
|
|
|
|
(define-key map (kbd "C-k") 'company-select-previous)
|
|
|
|
(define-key map (kbd "C-/") 'company-search-candidates)
|
|
|
|
(define-key map (kbd "C-M-/") 'company-filter-candidates)
|
|
|
|
(define-key map (kbd "C-d") 'company-show-doc-buffer))
|
2015-04-03 04:28:13 +00:00
|
|
|
;; Nicer looking faces
|
|
|
|
(custom-set-faces
|
|
|
|
'(company-tooltip-common
|
|
|
|
((t (:inherit company-tooltip :weight bold :underline nil))))
|
|
|
|
'(company-tooltip-common-selection
|
|
|
|
((t (:inherit company-tooltip-selection :weight bold :underline nil)))))
|
|
|
|
;; Transformers
|
|
|
|
(defun spacemacs//company-transformer-cancel (candidates)
|
|
|
|
"Cancel completion if prefix is in the list
|
|
|
|
`company-mode-completion-cancel-keywords'"
|
2015-04-27 02:47:08 +00:00
|
|
|
(unless (member company-prefix company-mode-completion-cancel-keywords)
|
2015-04-03 04:28:13 +00:00
|
|
|
candidates))
|
|
|
|
(setq company-transformers '(spacemacs//company-transformer-cancel
|
2015-04-09 03:57:22 +00:00
|
|
|
company-sort-by-occurrence)))))
|
2015-04-03 04:28:13 +00:00
|
|
|
|
|
|
|
(defun auto-completion/init-company-quickhelp ()
|
|
|
|
(use-package company-quickhelp
|
|
|
|
:if (and auto-completion-enable-company-help-tooltip
|
|
|
|
(display-graphic-p))
|
|
|
|
:defer t
|
|
|
|
:init (add-hook 'company-mode-hook 'company-quickhelp-mode)))
|
2015-04-23 02:03:04 +00:00
|
|
|
|
|
|
|
(defun auto-completion/init-helm-c-yasnippet ()
|
|
|
|
(use-package helm-c-yasnippet
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(defun spacemacs/helm-yas ()
|
|
|
|
"Properly lazy load helm-c-yasnipper."
|
|
|
|
(interactive)
|
|
|
|
(spacemacs/load-yasnippet)
|
|
|
|
(require 'helm-c-yasnippet)
|
|
|
|
(call-interactively 'helm-yas-complete))
|
|
|
|
(evil-leader/set-key "is" 'spacemacs/helm-yas)
|
|
|
|
(setq helm-c-yas-space-match-any-greedy t))))
|
|
|
|
|
|
|
|
(defun auto-completion/init-hippie-exp ()
|
|
|
|
;; replace dabbrev-expand
|
|
|
|
(global-set-key (kbd "M-/") 'hippie-expand)
|
|
|
|
(setq hippie-expand-try-functions-list
|
|
|
|
'(
|
|
|
|
;; Try to expand word "dynamically", searching the current buffer.
|
|
|
|
try-expand-dabbrev
|
|
|
|
;; Try to expand word "dynamically", searching all other buffers.
|
|
|
|
try-expand-dabbrev-all-buffers
|
|
|
|
;; Try to expand word "dynamically", searching the kill ring.
|
|
|
|
try-expand-dabbrev-from-kill
|
|
|
|
;; Try to complete text as a file name, as many characters as unique.
|
|
|
|
try-complete-file-name-partially
|
|
|
|
;; Try to complete text as a file name.
|
|
|
|
try-complete-file-name
|
|
|
|
;; Try to expand word before point according to all abbrev tables.
|
|
|
|
try-expand-all-abbrevs
|
|
|
|
;; Try to complete the current line to an entire line in the buffer.
|
|
|
|
try-expand-list
|
|
|
|
;; Try to complete the current line to an entire line in the buffer.
|
|
|
|
try-expand-line
|
|
|
|
;; Try to complete as an Emacs Lisp symbol, as many characters as
|
|
|
|
;; unique.
|
|
|
|
try-complete-lisp-symbol-partially
|
|
|
|
;; Try to complete word as an Emacs Lisp symbol.
|
|
|
|
try-complete-lisp-symbol))
|
|
|
|
(when (configuration-layer/package-usedp 'yasnippet)
|
|
|
|
;; Try to expand yasnippet snippets based on prefix
|
|
|
|
(push 'yas-hippie-try-expand hippie-expand-try-functions-list)))
|
|
|
|
|
|
|
|
(defun auto-completion/init-yasnippet ()
|
|
|
|
(use-package yasnippet
|
|
|
|
:commands yas-global-mode
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(defun spacemacs/load-yasnippet ()
|
|
|
|
(if (not (boundp 'yas-minor-mode))
|
|
|
|
(progn
|
|
|
|
(let* ((dir (configuration-layer/get-layer-property 'spacemacs :ext-dir))
|
|
|
|
(private-yas-dir (concat configuration-layer-private-directory "snippets"))
|
|
|
|
(yas-dir (concat dir "yasnippet-snippets")))
|
|
|
|
(setq yas-snippet-dirs
|
|
|
|
(append (when (boundp 'yas-snippet-dirs)
|
|
|
|
yas-snippet-dirs)
|
|
|
|
(list private-yas-dir yas-dir)))
|
|
|
|
(setq yas-wrap-around-region t)
|
|
|
|
(yas-global-mode 1)))))
|
|
|
|
(add-to-hooks 'spacemacs/load-yasnippet '(prog-mode-hook
|
|
|
|
markdown-mode-hook
|
|
|
|
org-mode-hook))
|
|
|
|
|
|
|
|
(spacemacs|add-toggle yasnippet
|
|
|
|
:status yas-minor-mode
|
|
|
|
:on (yas-minor-mode)
|
|
|
|
:off (yas-minor-mode -1)
|
|
|
|
:documentation "Enable yasnippet."
|
|
|
|
:evil-leader "ty")
|
|
|
|
|
|
|
|
(defun spacemacs/force-yasnippet-off ()
|
|
|
|
(yas-minor-mode -1)
|
|
|
|
(setq yas-dont-activate t))
|
|
|
|
|
|
|
|
(add-to-hooks 'spacemacs/force-yasnippet-off '(term-mode-hook
|
|
|
|
shell-mode-hook)))
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(spacemacs|diminish yas-minor-mode " ⓨ" " y"))))
|