summaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-01-18 14:41:54 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-01-18 14:41:54 +0000
commit9dac7f0a769b1a425e594dcfb006df715d709881 (patch)
treed4c43ff5136b973a9a9e65fe067426253da632a6 /init.el
parent04c1206e24608071507d8af80fcfc9436f2966ca (diff)
added projectile
Diffstat (limited to '')
-rw-r--r--init.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/init.el b/init.el
index 0891d5d..d9421d6 100644
--- a/init.el
+++ b/init.el
@@ -518,6 +518,7 @@
(ivy-count-format "【%d/%d】")
(ivy-wrap t)
:config
+ (setq projectile-completion-system 'ivy)
(defun counsel-goto-local-home ()
"Go to the $HOME of the local machine."
(interactive)
@@ -778,6 +779,14 @@
(ansi-color-apply-on-region (point-min) (point-max))))
(add-hook 'compilation-filter-hook 'colorize-compilation-buffer)
+;; projectile
+(use-package projectile
+ :config
+ (projectile-mode +1)
+ (define-key projectile-mode-map (kbd "s-p") 'projectile-command-map)
+ (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
+ )
+
;; Go programming
(use-package lsp-mode
:hook (go-mode . lsp-deferred)