Browse Source

surround mode

master
Fr3deric 4 years ago
parent
commit
bc22ea503c
  1. 1
      README.md
  2. 3
      init.el
  3. 1
      install-packages.el

1
README.md

@ -11,7 +11,6 @@ This is an attempt to learn about Emacs and its ecosystem by creating a custom c
## TODO ## TODO
* (semi-)automatically install missing packages (e.g. with `use-package`?) * (semi-)automatically install missing packages (e.g. with `use-package`?)
* surround commnd as in *Spacemacs*
* improve completion/navigation when chosing files * improve completion/navigation when chosing files
* find a buffer switcher * find a buffer switcher
* hilight trailing whitespace * hilight trailing whitespace

3
init.el

@ -18,6 +18,9 @@
(require 'evil) (require 'evil)
(evil-mode 1) (evil-mode 1)
(require 'evil-surround)
(global-evil-surround-mode 1)
;; better completion ;; better completion
(setq ido-enable-flex-matching t) (setq ido-enable-flex-matching t)
(setq ido-everywhere t) (setq ido-everywhere t)

1
install-packages.el

@ -24,6 +24,7 @@
(package-install 'doom-modeline) (package-install 'doom-modeline)
(package-install 'which-key) (package-install 'which-key)
(package-install 'ido-vertical-mode) (package-install 'ido-vertical-mode)
(package-install 'evil-surround)
;; prompts for font installation directory ;; prompts for font installation directory
;;(all-the-icons-install-fonts t) ;;(all-the-icons-install-fonts t)

Loading…
Cancel
Save