mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 08:14:15 +00:00
Indentation
This commit is contained in:
parent
886fc7e40e
commit
e88eb6623b
1 changed files with 15 additions and 14 deletions
|
|
@ -126,21 +126,22 @@
|
||||||
* Projectile
|
* Projectile
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package projectile
|
(use-package projectile
|
||||||
:init (progn
|
:init
|
||||||
(setq projectile-enable-caching t)
|
(progn
|
||||||
(setq projectile-git-submodule-command nil)
|
(setq projectile-enable-caching t)
|
||||||
(setq projectile-completion-system 'default)
|
(setq projectile-git-submodule-command nil)
|
||||||
|
(setq projectile-completion-system 'default)
|
||||||
|
|
||||||
;; (setq counsel-projectile-switch-project-action 'projectile-vc)
|
;; (setq counsel-projectile-switch-project-action 'projectile-vc)
|
||||||
(setq projectile-switch-project-action 'projectile-dired)
|
(setq projectile-switch-project-action 'projectile-dired)
|
||||||
(setq projectile-require-project-root t)
|
(setq projectile-require-project-root t)
|
||||||
(setq projectile-indexing-method 'hybrid)
|
(setq projectile-indexing-method 'hybrid)
|
||||||
(setq projectile-auto-update-cache nil)
|
(setq projectile-auto-update-cache nil)
|
||||||
(if (and (not (daemonp))
|
(if (and (not (daemonp))
|
||||||
(null window-system))
|
(null window-system))
|
||||||
(global-set-key (kbd "C-c M-[ emacs-C-.") 'projectile-command-map)
|
(global-set-key (kbd "C-c M-[ emacs-C-.") 'projectile-command-map)
|
||||||
(global-set-key (kbd "C-c C-.") 'projectile-command-map)
|
(global-set-key (kbd "C-c C-.") 'projectile-command-map)
|
||||||
(global-set-key (kbd "C-c M-[ emacs-C-.") 'projectile-command-map)))
|
(global-set-key (kbd "C-c M-[ emacs-C-.") 'projectile-command-map)))
|
||||||
:config
|
:config
|
||||||
(projectile-mode)
|
(projectile-mode)
|
||||||
(add-to-list 'projectile-globally-ignored-directories
|
(add-to-list 'projectile-globally-ignored-directories
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue