summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org21
1 files changed, 20 insertions, 1 deletions
diff --git a/README.org b/README.org
index 0fa5147..073c601 100644
--- a/README.org
+++ b/README.org
@@ -18,7 +18,7 @@
(require 'use-package)
(setq use-package-always-ensure t)
#+end_src
-* UI
+* Basic UI
** Remove bars
#+begin_src elisp
(menu-bar-mode -1)
@@ -47,3 +47,22 @@
#+begin_src elisp
(load-theme 'tango-dark)
#+end_src
+* Completion
+** Ivy
+#+begin_src elisp
+ (use-package ivy
+ :bind (("C-s" . swiper)
+ :map ivy-minibuffer-map
+ ("TAB" . ivy-alt-done))
+ :config
+ (ivy-mode 1))
+#+end_src
+** Counsel
+#+begin_src elisp
+ (use-package counsel
+ :bind (("M-x" . counsel-M-x)
+ ("C-x b" . counsel-ibuffer)
+ ("C-x C-f" . counsel-find-file))
+ :config
+ (setq ivy-initial-inputs-alist nil)) ;; Don't start searches with ^
+#+end_src