editor-bootstrap / emacs-bootstrap

Your on-the-fly Emacs development environment.
http://emacs-bootstrap.com
MIT License
166 stars 23 forks source link

Provide option for evil-mode during generation #37

Open dylanfw opened 6 years ago

rakanalh commented 6 years ago

Hi @dylanfw.

I like this suggestion. However, i don't use evil and am not sure if just installing the package is enough without any configuration. It would be great if an evil-mode user could contribute his/her configs.

Hettomei commented 4 years ago

Hi. I'm new to emacs but very good user of vim.

I would say, here is the very minimum evil configuration :

;; cat elisp/evil-config.el

;; load evil
(use-package evil
  :ensure t
  :init
  (setq evil-search-module 'evil-search)
  :config
  (evil-mode 1)

(provide 'evil-config)

Edit: remove a binding to C-x which I think is a very newbie idea :)