emacs: auto-discover projectile projects I no longer need the `add_project` function to add these from a shell
Alan Pearce alan@alanpearce.eu
Sat, 08 Apr 2023 08:51:49 +0200
2 files changed, 1 insertions(+), 6 deletions(-)
M user/emacs/init.el → user/emacs/init.el
@@ -925,6 +925,7 @@ (add-to-list 'projectile-project-root-files "package.json") (add-to-list 'projectile-project-root-files-bottom-up "pnpm-workspace.yaml") (setq projectile-kill-buffers-filter 'kill-only-files projectile-sort-order 'modification-time + projectile-project-search-path '(("~/projects/" . 2)) projectile-project-root-functions '(projectile-root-local projectile-root-top-down projectile-root-bottom-up
M user/zsh/zshrc → user/zsh/zshrc
@@ -147,12 +147,6 @@ bindkey '^x^k' anyframe-widget-kill unsetopt flow_control # Let me use ^S and ^Q -add_project () { - project=${1:-$PWD} - emacsclient -e "(projectile-add-known-project \"${project}\")" -} -compdef '_path_files -/' add_project - esetenv () { emacsclient -e "(setenv \"$1\" \"$2\")" }