emacs: add projectile

its goated id say

Signed-off-by: Artur Manuel <balkenix@outlook.com>
This commit is contained in:
Artur Manuel 2024-07-18 16:04:00 +01:00
commit fec2ab8e65
Failed to generate hash of commit
2 changed files with 18 additions and 5 deletions

View file

@ -1,9 +1,8 @@
#+title: PANKOMACS
#+author: Artur Manuel
#+PROPERTY: header-args :tangle config.el
[[./panko.gif][the fat fat panko cat]]
* Emacs window stuff
Things like turning off the menubar, etc.
#+BEGIN_SRC emacs-lisp
@ -387,9 +386,6 @@ Amazing tool, love it a bunch.
; (use-package treemacs-evil
; :after (treemacs evil)
; :ensure t)
; (use-package treemacs-projectile
; :after (treemacs projectile)
; :ensure t)
; (use-package treemacs-magit
; :after (treemacs magit)
; :ensure t)
@ -402,3 +398,18 @@ Amazing tool, love it a bunch.
; :ensure t
; :config (treemacs-set-scope-type 'Tabs))
#+END_SRC
* Projectile
This makes stuff a lot easier I hope.
#+BEGIN_SRC emacs-lisp
(use-package projectile
:ensure t
:init
(projectile-mode +1)
:bind (:map projectile-mode-map
("s-p" . projectile-command-map)
("C-c p" . projectile-command-map)))
(use-package treemacs-projectile
:after (treemacs projectile)
:ensure t)
#+END_SRC