summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ravi-init-navigation.el22
1 files changed, 22 insertions, 0 deletions
diff --git a/ravi-init-navigation.el b/ravi-init-navigation.el
index 04edf35..a0d6ec3 100644
--- a/ravi-init-navigation.el
+++ b/ravi-init-navigation.el
@@ -53,6 +53,12 @@
(setq compilation-scroll-output 'first-error)
+(use-package smartparens
+ :commands (smartparens-mode show-smartparens-mode)
+ :config (require 'smartparens-config)
+ :ensure t
+ )
+
;; Marking and moving lines
(bind-key
@@ -74,6 +80,22 @@
:ensure t
)
+(let ((ad-redefinition-action 'accept))
+ (use-package color-moccur
+ :commands (isearch-moccur isearch-all)
+ :bind ("M-s O" . moccur)
+ :init
+ (progn
+ (bind-key "M-o" 'isearch-moccur isearch-mode-map)
+ (bind-key "M-O" 'isearch-moccur-all isearch-mode-map))
+
+ :config
+ (use-package moccur-edit)
+
+ :ensure t
+ )
+ )
+
;; Search the web
(use-package webjump
:bind ("C-x g" . webjump)