diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-18 14:41:54 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-18 14:41:54 +0000 |
commit | 9dac7f0a769b1a425e594dcfb006df715d709881 (patch) | |
tree | d4c43ff5136b973a9a9e65fe067426253da632a6 /init.el | |
parent | 04c1206e24608071507d8af80fcfc9436f2966ca (diff) |
added projectile
Diffstat (limited to '')
-rw-r--r-- | init.el | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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) |