aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2019-03-28 00:17:27 +0100
committerThomas Schneider <qsx@qsx.re>2019-03-28 00:17:27 +0100
commit74291e1ab2747e6afe944d48275c2ae840615fc8 (patch)
treeaa05962a587669292d8df21ad9cdd33b32f32b5d
parent5074ebeb1b21637795a609513139c039072cc87f (diff)
Emacs: Use projectile
-rw-r--r--dot.emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 3764f86..c7cc508 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -53,6 +53,11 @@
:init (exec-path-from-shell-initialize))
(setenv "LANG" "de_DE.UTF-8"))
+(use-package projectile
+ :config (projectile-mode 1)
+ :bind (:map projectile-mode-map
+ ("C-c p" . #'projectile-command-map)))
+
(use-package ace-window
:bind ("M-o" . ace-window))