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

3
init.el

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

1
install-packages.el

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

Loading…
Cancel
Save