Fix projectile

This commit is contained in:
Lars Tveito 2020-03-10 20:42:09 +01:00
parent 9c90ebd24f
commit 362de84117

View File

@ -366,7 +366,7 @@
global-company-mode ; Auto-completion everywhere global-company-mode ; Auto-completion everywhere
global-git-gutter-mode ; Show changes latest commit global-git-gutter-mode ; Show changes latest commit
global-prettify-symbols-mode ; Greek letters should look greek global-prettify-symbols-mode ; Greek letters should look greek
projectile-global-mode ; Manage and navigate projects projectile-mode ; Manage and navigate projects
recentf-mode ; Recently opened files recentf-mode ; Recently opened files
show-paren-mode ; Highlight matching parentheses show-paren-mode ; Highlight matching parentheses
which-key-mode)) ; Available keybindings in popup which-key-mode)) ; Available keybindings in popup
@ -1292,6 +1292,12 @@
(define-key helm-map (kbd "C-z") 'helm-select-action)) (define-key helm-map (kbd "C-z") 'helm-select-action))
#+END_SRC #+END_SRC
** Bindings for [[https://github.com/bbatsov/projectile][Projectile]]
#+BEGIN_SRC emacs-lisp
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
#+END_SRC
** Bindings for built-ins ** Bindings for built-ins
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp