[projectile] move configuration to init.org

This commit is contained in:
contrapunctus 2021-02-18 17:45:17 +05:30
parent 74a95a8207
commit 3f25c80773
2 changed files with 6 additions and 5 deletions

View File

@ -65,10 +65,6 @@ active, else `sp-copy-sexp'."
(whole-line-or-region-copy-region-as-kill arg)
(sp-copy-sexp arg)))
(use-package projectile
:hook
(emacs-lisp-mode . projectile-mode))
(defun colorize-compilation-buffer ()
(ansi-color-apply-on-region compilation-filter-start
(point)))

View File

@ -126,7 +126,7 @@ This needs to be before =boon=, or you get a "failed to define function ido-mini
("t l" . 'transpose-lines)
("t p" . 'transpose-paragraphs)
("t c" . 'transpose-chars)
("\\" . projectile-command-map)
;; ("\\" . projectile-command-map)
("(" . boon-navigate-backward)
(")" . boon-navigate-forward)
("e r" . swiper-thing-at-point)
@ -1594,6 +1594,11 @@ It'd be really cool to (recenter 3) when you /open/ a section, and (recenter) wh
;; (push (cons ?\[ [?\(]) keyswap-pairs)
(keyswap-update-keys)))
(use-package projectile
:hook (prog-mode . projectile-mode)
:bind (:map boon-command-map
("\\" . projectile-command-map)))
(use-package rainbow-delimiters
:hook (prog-mode . rainbow-delimiters-mode))