summaryrefslogtreecommitdiff
path: root/emacs/.config/emacs-kj
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-09-28 20:08:06 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-09-28 20:08:06 -0400
commit0e8415e13db90259055bc8279bb918c2e3d29b9f (patch)
tree32d636e79626c047b9d9af38ad55c8dcea4c5b2a /emacs/.config/emacs-kj
parent8ee8fcc1e7c35bea75e65d697578a0b7ab3d82ea (diff)
Disable projectile
Diffstat (limited to 'emacs/.config/emacs-kj')
-rw-r--r--emacs/.config/emacs-kj/init.el11
1 files changed, 4 insertions, 7 deletions
diff --git a/emacs/.config/emacs-kj/init.el b/emacs/.config/emacs-kj/init.el
index 4984775..757a874 100644
--- a/emacs/.config/emacs-kj/init.el
+++ b/emacs/.config/emacs-kj/init.el
@@ -103,10 +103,6 @@
(recentf-mode 1)
(run-at-time nil (* 5 60) 'recentf-save-list)
-(use-package projectile
- :init
- (projectile-global-mode))
-
;; Example configuration for Consult
(use-package consult
;; Replace bindings. Lazily loaded due by `use-package'.
@@ -218,8 +214,8 @@
;;;; 1. project.el (the default)
;; (setq consult-project-function #'consult--default-project--function)
;;;; 2. projectile.el (projectile-project-root)
- (autoload 'projectile-project-root "projectile")
- (setq consult-project-function (lambda (_) (projectile-project-root)))
+ ;; (autoload 'projectile-project-root "projectile")
+ ;; (setq consult-project-function (lambda (_) (projectile-project-root)))
;;;; 3. vc.el (vc-root-dir)
;; (setq consult-project-function (lambda (_) (vc-root-dir)))
;;;; 4. locate-dominating-file
@@ -254,7 +250,8 @@
'("0" . meow-digit-argument)
'("/" . meow-keypad-describe-key)
'("?" . meow-cheatsheet)
- '("p" . projectile-command-map))
+ ;;'("p" . projectile-command-map)
+ )
(meow-motion-overwrite-define-key
;; custom keybinding for motion state
'("<escape>" . ignore))