emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit e635c7e40f5650d3c201a9ca8c43a0cd453c1ac3
parent 2482c5cecc0626cb73c1eba87f5457a3a585e930
Author: Cem Keylan <cem@ckyln.com>
Date:   Thu, 26 Mar 2020 02:34:02 +0300

add projectile

Diffstat:
Minit.org | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/init.org b/init.org @@ -24,6 +24,7 @@ - [[#company-mode][Company Mode]] - [[#yasnippet][Yasnippet]] - [[#mingus][Mingus]] + - [[#projectile][Projectile]] - [[#treemacs][Treemacs]] - [[#emacs-dashboard][emacs-dashboard]] - [[#extras][Extras]] @@ -385,6 +386,13 @@ simple, straightforward interface. (use-package mingus :ensure t) (global-set-key (kbd "C-c m") 'mingus) #+END_SRC +** Projectile +#+BEGIN_SRC emacs-lisp +(use-package projectile + :ensure t + :init (projectile-mode +1) + (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)) +#+END_SRC ** Treemacs #+BEGIN_SRC emacs-lisp (use-package treemacs @@ -403,6 +411,12 @@ simple, straightforward interface. :ensure t :requires treemacs :after (treemacs magit)) + +(use-package treemacs-projectile + :ensure t + :requires treemacs + :after (treemacs projectile)) +#+END_SRC ** emacs-dashboard #+BEGIN_SRC emacs-lisp (use-package dashboard