From f0ebe4f354866b74dfda52f4763621b3062a81e0 Mon Sep 17 00:00:00 2001 From: Raul Benencia Date: Tue, 26 Mar 2024 14:54:39 -0700 Subject: emacs: rm projectile --- .emacs.d/init.el | 1 - .emacs.d/rul-init.d/hydra.el | 50 --------------------------------------- .emacs.d/rul-init.d/projectile.el | 8 ------- 3 files changed, 59 deletions(-) delete mode 100644 .emacs.d/rul-init.d/projectile.el (limited to '.emacs.d') diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 3347127..00c3890 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -202,7 +202,6 @@ (load-file "~/.emacs.d/rul-init.d/mail-mode.el") (load-file "~/.emacs.d/rul-init.d/markdown.el") (load-file "~/.emacs.d/rul-init.d/notmuch.el") -(load-file "~/.emacs.d/rul-init.d/projectile.el") (load-file "~/.emacs.d/rul-init.d/vterm.el") (load-file "~/.emacs.d/rul-init.d/which-key.el") diff --git a/.emacs.d/rul-init.d/hydra.el b/.emacs.d/rul-init.d/hydra.el index 0b81da2..525162e 100644 --- a/.emacs.d/rul-init.d/hydra.el +++ b/.emacs.d/rul-init.d/hydra.el @@ -2,56 +2,6 @@ :ensure t :defer 1) -;; projectile -(defhydra hydra-projectile-other-window (:color teal) - "projectile-other-window" - ("f" projectile-find-file-other-window "file") - ("g" projectile-find-file-dwim-other-window "file dwim") - ("d" projectile-find-dir-other-window "dir") - ("b" projectile-switch-to-buffer-other-window "buffer") - ("q" nil "cancel" :color blue)) - -(defhydra hydra-projectile (:color teal - :hint nil) - " - PROJECTILE: %(projectile-project-root) - - Find File Search/Tags Buffers Cache ------------------------------------------------------------------------------------------- -_s-f_: file _a_: ag _i_: Ibuffer _c_: cache clear - _ff_: file dwim _g_: update gtags _b_: switch to buffer _x_: remove known project - _fd_: file curr dir _o_: multi-occur _s-k_: Kill all buffers _X_: cleanup non-existing - _r_: recent file _s_: ripgrep ^^^^_z_: cache current - _d_: dir - -" - ("a" projectile-ag) - ("b" projectile-switch-to-buffer) - ("c" projectile-invalidate-cache) - ("d" projectile-find-dir) - ("s-f" projectile-find-file) - ("ff" projectile-find-file-dwim) - ("fd" projectile-find-file-in-directory) - ("g" ggtags-update-tags) - ("s-g" ggtags-update-tags) - ("i" projectile-ibuffer) - ("K" projectile-kill-buffers) - ("s-k" projectile-kill-buffers) - ("m" projectile-multi-occur) - ("o" projectile-multi-occur) - ("s-p" projectile-switch-project "switch project") - ("p" projectile-switch-project) - ("s" projectile-save-project-buffers "save project buffers") - ("r" projectile-recentf) - ("x" projectile-remove-known-project) - ("X" projectile-cleanup-known-projects) - ("z" projectile-cache-current-file) - ("`" hydra-projectile-other-window/body "other window") - ("q" nil "cancel" :color blue)) - - -(global-set-key (kbd "C-c p") 'hydra-projectile/body) - ;; tab-bar (defhydra hydra-tab-bar (:color amaranth) "Tab Bar Operations" diff --git a/.emacs.d/rul-init.d/projectile.el b/.emacs.d/rul-init.d/projectile.el deleted file mode 100644 index a3c5dd5..0000000 --- a/.emacs.d/rul-init.d/projectile.el +++ /dev/null @@ -1,8 +0,0 @@ -;; Debian packages: elpa-projectile - -(use-package projectile - :hook - (after-init . projectile-global-mode) - :config - (setq projectile-completion-system 'auto) -) -- cgit v1.2.3