summaryrefslogtreecommitdiffstats
path: root/spacemacs/.emacs.d/private/evil/packages.el
diff options
context:
space:
mode:
authorAmin Bandali <me@aminb.org>2015-06-28 20:40:54 -0400
committerAmin Bandali <me@aminb.org>2015-06-28 20:46:07 -0400
commit3e1228d02ef59768d3a6adb9972eaf954d0e3a69 (patch)
tree8630ba614bb2122954b47fb20723a77d6be9fb50 /spacemacs/.emacs.d/private/evil/packages.el
parent896820db531ccaadd2ccc37dcad097aa041b821d (diff)
downloadconfigs-3e1228d02ef59768d3a6adb9972eaf954d0e3a69.tar.gz
configs-3e1228d02ef59768d3a6adb9972eaf954d0e3a69.tar.xz
configs-3e1228d02ef59768d3a6adb9972eaf954d0e3a69.zip
[spacemacs] sync up with latest template
and move my 'evil' customizations into dotspacemacs
Diffstat (limited to 'spacemacs/.emacs.d/private/evil/packages.el')
-rw-r--r--spacemacs/.emacs.d/private/evil/packages.el40
1 files changed, 0 insertions, 40 deletions
diff --git a/spacemacs/.emacs.d/private/evil/packages.el b/spacemacs/.emacs.d/private/evil/packages.el
deleted file mode 100644
index 2b44788..0000000
--- a/spacemacs/.emacs.d/private/evil/packages.el
+++ /dev/null
@@ -1,40 +0,0 @@
-;;; packages.el --- evil Layer packages File for Spacemacs
-;;
-;; Copyright (c) 2012-2014 Sylvain Benner
-;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
-;; Copyright (c) 2015 Amin Bandali
-;;
-;; Authors: Amin Bandali <me@aminb.org>
-;; Sylvain Benner <sylvain.benner@gmail.com>
-;; URL: https://github.com/aminb/dotfiles
-;;
-;; This file is not part of GNU Emacs; nor that of spacemacs.
-;;
-;;; License: GPLv3
-
-(defvar evil-packages
- '(
- ;; package evils go here
- )
- "List of all packages to install and/or initialize. Built-in packages
-which require an initialization must be listed explicitly in the list.")
-
-(defvar evil-excluded-packages '(
- ;; evil-search-highlight-persist
- )
- "List of packages to exclude.")
-
-(define-key evil-motion-state-map ";" 'evil-ex)
-(define-key evil-motion-state-map ":" 'evil-repeat-find-char)
-
-(custom-set-faces '(evil-search-highlight-persist-highlight-face ((t (:background "#5F5F5F")))))
-
-;; For each package, define a function evil/init-<package-evil>
-;;
-;; (defun evil/init-my-package ()
-;; "Initialize my package"
-;; )
-;;
-;; Often the body of an initialize function uses `use-package'
-;; For more info on `use-package', see readme:
-;; https://github.com/jwiegley/use-package