Fix to the projectile's ability to find projects
This commit is contained in:
parent
911b2ef4ce
commit
38b5490bbe
2 changed files with 28 additions and 28 deletions
|
@ -1146,9 +1146,11 @@ While editing any file on disk is easy enough, I like the mental context switch
|
||||||
While I really don't /need/ all the features that [[https://github.com/bbatsov/projectile][projectile]] provides, it has all the features I do need, and is easy enough to install. I am referring to the fact that I /could/ use the built-in =project.el= system (see [[https://cestlaz.github.io/post/using-emacs-79-project/][this essay]] for details on what I mean as an alternative).
|
While I really don't /need/ all the features that [[https://github.com/bbatsov/projectile][projectile]] provides, it has all the features I do need, and is easy enough to install. I am referring to the fact that I /could/ use the built-in =project.el= system (see [[https://cestlaz.github.io/post/using-emacs-79-project/][this essay]] for details on what I mean as an alternative).
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package projectile
|
(use-package projectile
|
||||||
:custom
|
:custom
|
||||||
(projectile-sort-order 'recentf)
|
(projectile-sort-order 'recentf)
|
||||||
|
(projectile-project-root-functions '(projectile-root-bottom-up))
|
||||||
|
|
||||||
:config
|
:config
|
||||||
(ha-leader
|
(ha-leader
|
||||||
"p" '(:ignore t :which-key "projects")
|
"p" '(:ignore t :which-key "projects")
|
||||||
|
|
|
@ -179,8 +179,6 @@ Now I’m getting obsessive with elongating dashes:
|
||||||
(t (insert "-")))))
|
(t (insert "-")))))
|
||||||
|
|
||||||
(define-key org-mode-map "-" #'ha-insert-long-dash)
|
(define-key org-mode-map "-" #'ha-insert-long-dash)
|
||||||
|
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* Org Beautify
|
* Org Beautify
|
||||||
I really want to use the Org Beautify package, but it overrides my darker themes (and all I really want is headlines to behave).
|
I really want to use the Org Beautify package, but it overrides my darker themes (and all I really want is headlines to behave).
|
||||||
|
|
Loading…
Reference in a new issue