Enable projectile

This commit is contained in:
Andreas Zweili 2022-08-31 22:40:30 +02:00
parent 5a48e8f17d
commit 640fc76825
4 changed files with 13 additions and 2 deletions

View File

@ -79,6 +79,7 @@
epkgs.pkg-info
epkgs.posframe
epkgs.powershell
epkgs.projectile
epkgs.python-mode
epkgs.queue
epkgs.rainbow-delimiters

View File

@ -415,11 +415,11 @@
;; keymap for my personal.org file
(when (boundp 'enable-personal-agenda)
(when (is-linux-p)
(global-set-key (kbd "C-c p")
(global-set-key (kbd "C-c C-p")
(lambda () (interactive) (find-file "~/nextcloud/12_tasks/personal.org")))))
(when (boundp 'enable-work-agenda)
(when (is-windows-p)
(global-set-key (kbd "C-c p")
(global-set-key (kbd "C-c C-p")
(lambda () (interactive) (find-file "~/nextcloud/03_documents/org/agenda/work/work.org")))))
;; Calender should start on Monday

View File

@ -0,0 +1,9 @@
(use-package projectile
:ensure t
:init
(projectile-mode +1)
:config
(setq projectile-project-search-path '("~/git_repos/projects/" "~/git_repos/work/"))
:bind (:map projectile-mode-map
("M-p" . projectile-command-map)
("C-c p" . projectile-command-map)))

View File

@ -31,6 +31,7 @@
(load-file (modules-path "format_all.el"))
(load-file (modules-path "magit.el"))
(load-file (modules-path "powershell.el"))
(load-file (modules-path "projectile.el"))
(load-file (modules-path "python.el"))
(load-file (modules-path "webmode.el"))
(load-file (modules-path "yaml.el"))