src.nth.io/

summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-02-16 14:02:12 -0600
committerLuke Hoersten <[email protected]>2020-02-16 14:02:12 -0600
commit08ba543ddf8f014b5f2def2623653b5a9ae61493 (patch)
treea599bf8ae2f86161bce85cdc31b78452471eb92a /init.el
parent87cc3d0dcd3f8112619b87aed6506a5676117342 (diff)
Replaced ag with rg.
Diffstat (limited to 'init.el')
-rw-r--r--init.el13
1 files changed, 9 insertions, 4 deletions
diff --git a/init.el b/init.el
index fe9aa7b..ee17f60 100644
--- a/init.el
+++ b/init.el
@@ -1,5 +1,7 @@
-;; ~/.emacs.d/init.el (~/.emacs)
-;; Luke Hoersten <[email protected]>
+;;; init --- Summary: Luke Hoersten <[email protected]> personal init file
+
+;;; Commentary:
+;;; ~/.emacs.d/init.el (~/.emacs)
;;; Code:
(add-to-list 'load-path "~/.emacs.d/elisp") ; set default emacs load path
@@ -33,7 +35,7 @@
(global-set-key (kbd "C-c c") 'compile) ; compile
(global-set-key (kbd "C-c r") 'recompile) ; recompile
(global-set-key (kbd "C-c a") 'align-regexp) ; align
-(global-set-key (kbd "C-c g") 'ag) ; ag
+(global-set-key (kbd "C-c g") 'rg) ; rg
;;; ediff
@@ -63,7 +65,7 @@
;;;; Packages ;;;;
(package-initialize)
(require 'package-require)
-(package-require '(ag company exec-path-from-shell expand-region flx-ido
+(package-require '(rg company exec-path-from-shell expand-region flx-ido
smex markdown-mode markdown-mode+ hgignore-mode move-text paredit
rainbow-delimiters json-mode json-reformat flycheck
solarized-theme terraform-mode visual-regexp yasnippet yaml-mode
@@ -250,3 +252,6 @@
;;; visual-regexp
(global-set-key (kbd "C-M-%") 'vr/query-replace)
(global-set-key (kbd "M-%") 'vr/replace)
+
+(provide 'init)
+;;; init.el ends here