diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-06 23:50:06 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-06 23:50:06 +0530 |
commit | 9aa6de5f2433b457f2aa7b89bf6301074e1d7f21 (patch) | |
tree | dc57fdd471e5d530217adf6f42ea5b9487a7b393 /Emacs/.config | |
parent | 39b250e9037237d5995de75801cafe5ecc1278e6 (diff) | |
download | dotfiles-9aa6de5f2433b457f2aa7b89bf6301074e1d7f21.tar.gz dotfiles-9aa6de5f2433b457f2aa7b89bf6301074e1d7f21.tar.bz2 dotfiles-9aa6de5f2433b457f2aa7b89bf6301074e1d7f21.zip |
(Emacs/config|core)~projectile -> project
Removing a dependency!
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/config.org | 5 | ||||
-rw-r--r-- | Emacs/.config/emacs/core.org | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 80127fa..92b9683 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -524,7 +524,10 @@ Recentf provides a method of keeping track of recently opened files. :straight nil :hook (emacs-startup-hook . recentf-mode)) #+end_src -** Projectile +** WAIT Projectile +:PROPERTIES: +:header-args:emacs-lisp: :tangle no +:END: Projectile is a project management package which integrates with Emacs very well. It essentially provides alternative Emacs commands scoped to the current 'project', based on differing signs that a directory is diff --git a/Emacs/.config/emacs/core.org b/Emacs/.config/emacs/core.org index f4e45d4..9326f02 100644 --- a/Emacs/.config/emacs/core.org +++ b/Emacs/.config/emacs/core.org @@ -133,11 +133,12 @@ Some bindings that I couldn't fit elsewhere easily. (leader "SPC" '(execute-extended-command :which-key "M-x") + "p" `(,project-prefix-map :which-key "Project") "'" '(browse-url-emacs :which-key "Download URL to Emacs") ":" `(,(proc (interactive) (switch-to-buffer "*scratch*")) :which-key "Switch to *scratch*") "!" '(async-shell-command :which-key "Async shell command") - "h" '(help-command :which-key "Help")) + "h" '(help-command :which-key "Help")) (mode-leader "T" #'+oreo/switch-theme) |