Fix projectile

This commit is contained in:
Love 2025-01-28 23:23:27 +01:00
parent f9b5c35951
commit c908d07abb

10
.emacs
View File

@ -3,7 +3,7 @@
;; ===========================
(require 'package)
;; Add MELPA, Org, and GNU package archives
;(setq package-check-signature nil); Add MELPA, Org, and GNU package archives
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
("gnu" . "https://elpa.gnu.org/packages/")))
@ -180,9 +180,9 @@
;; Install and configure Projectile
(use-package projectile
:init
(projectile-mode +1)
:bind (:map projectile-mode-map
("s-p" . projectile-command-map)))
(projectile-mode +1)
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
)
;; Install and bind Magit
(use-package magit
@ -269,7 +269,7 @@
;; If there is more than one, they won't work right.
'(helm-minibuffer-history-key "M-p")
'(package-selected-packages
'(lsp-pyright zenburn-theme which-key solarized-theme rust-mode projectile poetry magit lsp-ui lsp-treemacs kotlin-mode helm flycheck evil-collection dracula-theme company better-defaults)))
'(lsp-mode lsp-pyright zenburn-theme which-key solarized-theme rust-mode projectile poetry magit lsp-ui lsp-treemacs kotlin-mode helm flycheck evil-collection dracula-theme company better-defaults)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.