1 ;;; packages.el --- evil Layer packages File for Spacemacs
3 ;; Copyright (c) 2012-2014 Sylvain Benner
4 ;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
5 ;; Copyright (c) 2015 Amin Bandali
7 ;; Authors: Amin Bandali <me@aminb.org>
8 ;; Sylvain Benner <sylvain.benner@gmail.com>
9 ;; URL: https://github.com/aminb/dotfiles
11 ;; This file is not part of GNU Emacs; nor that of spacemacs.
17 ;; package evils go here
19 "List of all packages to install and/or initialize. Built-in packages
20 which require an initialization must be listed explicitly in the list.")
22 (defvar evil-excluded-packages
'(
23 ;; evil-search-highlight-persist
25 "List of packages to exclude.")
27 (define-key evil-motion-state-map
";" 'evil-ex
)
28 (define-key evil-motion-state-map
":" 'evil-repeat-find-char
)
30 (custom-set-faces '(evil-search-highlight-persist-highlight-face ((t (:background
"#5F5F5F")))))
32 ;; For each package, define a function evil/init-<package-evil>
34 ;; (defun evil/init-my-package ()
35 ;; "Initialize my package"
38 ;; Often the body of an initialize function uses `use-package'
39 ;; For more info on `use-package', see readme:
40 ;; https://github.com/jwiegley/use-package