fix(emacs): make projectile work on first try
For some reason, removing those two lines from `misc.el` prevents projectile from "working" on the first try when opening up for projects... As in, there is no completion in the minibuffer.
This commit is contained in:
parent
9f17186661
commit
9a73e08a2f
2 changed files with 4 additions and 4 deletions
|
@ -182,6 +182,9 @@
|
|||
;; Magit
|
||||
(setq auth-sources '("~/.authinfo"))
|
||||
|
||||
(projectile-mode +1)
|
||||
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
|
||||
|
||||
;; hledger
|
||||
(setq hledger-currency-string "$")
|
||||
(add-to-list 'auto-mode-alist '("\\.journal\\'" . hledger-mode))
|
||||
|
|
|
@ -71,10 +71,7 @@
|
|||
:hook (prog-mode . ws-butler-mode))
|
||||
|
||||
;; Convenience
|
||||
(use-package projectile :straight t
|
||||
:bind (("C-c p" . 'projectile-command-map))
|
||||
:init
|
||||
(projectile-mode))
|
||||
(use-package projectile :straight t)
|
||||
(use-package bufler :straight t
|
||||
:bind (("C-x C-b" . bufler-list)
|
||||
("C-x b" . bufler-switch-buffer))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue