Emacs: Remove safe-mark from projectile-enable-caching.

Not needed anymore.
This commit is contained in:
tastytea 2020-08-03 03:14:34 +02:00
parent 963bae0b9c
commit 0478315d10
1 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-08-03T02:56:38+0200>
;; Time-stamp: <2020-08-03T03:08:03+0200>
;;; Commentary:
@ -147,7 +147,6 @@ collapse other projects."
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DWITH_TESTS=YES ..")
(projectile-completion-system 'ivy)
(projectile-indexing-method 'hybrid) ; Allow filtering.
;; (projectile-enable-caching t)
(projectile-globally-ignored-file-suffixes '("~")))
:config (progn
(setq projectile-project-compilation-cmd
@ -159,7 +158,6 @@ collapse other projects."
'safe-local-variable #'stringp)
(put 'projectile-project-configure-cmd
'safe-local-variable #'stringp)
(put 'projectile-enable-caching 'safe-local-variable #'booleanp)
;; Auto-search for projects.
(if (f-directory? "~/Projekte")
(setq projectile-project-search-path '("~/Projekte"))))