emacs: add projectile
its goated id say Signed-off-by: Artur Manuel <balkenix@outlook.com>
This commit is contained in:
parent
b610eb4d5d
commit
fec2ab8e65
2 changed files with 18 additions and 5 deletions
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
#+title: PANKOMACS
|
#+title: PANKOMACS
|
||||||
#+author: Artur Manuel
|
#+author: Artur Manuel
|
||||||
#+PROPERTY: header-args :tangle config.el
|
#+PROPERTY: header-args :tangle config.el
|
||||||
|
|
||||||
[[./panko.gif][the fat fat panko cat]]
|
|
||||||
|
|
||||||
* Emacs window stuff
|
* Emacs window stuff
|
||||||
Things like turning off the menubar, etc.
|
Things like turning off the menubar, etc.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -387,9 +386,6 @@ Amazing tool, love it a bunch.
|
||||||
; (use-package treemacs-evil
|
; (use-package treemacs-evil
|
||||||
; :after (treemacs evil)
|
; :after (treemacs evil)
|
||||||
; :ensure t)
|
; :ensure t)
|
||||||
; (use-package treemacs-projectile
|
|
||||||
; :after (treemacs projectile)
|
|
||||||
; :ensure t)
|
|
||||||
; (use-package treemacs-magit
|
; (use-package treemacs-magit
|
||||||
; :after (treemacs magit)
|
; :after (treemacs magit)
|
||||||
; :ensure t)
|
; :ensure t)
|
||||||
|
@ -402,3 +398,18 @@ Amazing tool, love it a bunch.
|
||||||
; :ensure t
|
; :ensure t
|
||||||
; :config (treemacs-set-scope-type 'Tabs))
|
; :config (treemacs-set-scope-type 'Tabs))
|
||||||
#+END_SRC
|
#+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
|
||||||
|
|
|
@ -30,6 +30,8 @@ emacsWithPackagesFromUsePackage {
|
||||||
treemacs-nerd-icons
|
treemacs-nerd-icons
|
||||||
nerd-icons
|
nerd-icons
|
||||||
all-the-icons
|
all-the-icons
|
||||||
|
projectile
|
||||||
|
treemacs-projectile
|
||||||
];
|
];
|
||||||
override = _: prev: { use-package = prev.emacs; };
|
override = _: prev: { use-package = prev.emacs; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue