summaryrefslogtreecommitdiff
path: root/lisp/general.el
diff options
context:
space:
mode:
authorMatthew Kosarek <matthew.kosarek@vention.cc>2023-01-04 10:46:22 -0500
committerMatthew Kosarek <matthew.kosarek@vention.cc>2023-01-04 10:46:22 -0500
commita5ea55766f7c09f9d105239c547029cf8c7405ad (patch)
tree789b84af4604d1c827d4edda03cab934e46240db /lisp/general.el
parent6147c614415231543619577dc8c3f666824a4da7 (diff)
Improved file search, and tsx support
Diffstat (limited to 'lisp/general.el')
-rw-r--r--lisp/general.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/general.el b/lisp/general.el
index db045a1..4b65189 100644
--- a/lisp/general.el
+++ b/lisp/general.el
@@ -81,6 +81,7 @@
;; I am using the helm package, of course
(use-package helm)
+(helm-mode 1)
;; Projectile for project navigation
(use-package projectile)
@@ -167,9 +168,9 @@
;; Global key binds
(require 'eglot)
(bind-key* (kbd "<f2>") #'eglot-rename)
-(bind-key* (kbd "C-x C-f") 'counsel-find-file)
-(bind-key* (kbd "M-x") 'counsel-M-x)
-(bind-key* (kbd "C-;") 'neotree-toggle)
+(bind-key* (kbd "C-x C-f") 'helm-find-files)
+;(bind-key* (kbd "C-s") 'helm-do-grep-ag)
+(bind-key* (kbd "M-x") 'helm-M-x)
(bind-key* (kbd "M-.") 'xref-find-definitions)
(bind-key* (kbd "C-x k") 'kill-this-buffer)
(bind-key* (kbd "C-x b") 'electric-buffer-list)