Bingen Eguzkitza пре 5 година
родитељ
комит
18fc85facc
3 измењених фајлова са 29 додато и 0 уклоњено
  1. +3
    -0
      init.el
  2. +12
    -0
      lisp/init-helm-projectile.el
  3. +14
    -0
      lisp/init-projectile.el

+ 3
- 0
init.el Прегледај датотеку

@@ -58,6 +58,7 @@
(require 'init-company)
(require 'init-windows)
(require 'init-flycheck)
(require 'init-projectile)

(require 'init-editing-utils)

@@ -74,6 +75,8 @@
(require 'setup-cedet)
(require 'setup-editing)

(require 'init-helm-projectile)

(require 'capnp-mode)

(require 'init-org)

+ 12
- 0
lisp/init-helm-projectile.el Прегледај датотеку

@@ -0,0 +1,12 @@
;;; package --- Helm Projectile
;;; Commentary:
;;; Code:

;;; https://github.com/bbatsov/helm-projectile

(require-package 'helm-projectile)

(helm-projectile-on)

(provide 'init-helm-projectile)
;;; init-helm-projectile ends here

+ 14
- 0
lisp/init-projectile.el Прегледај датотеку

@@ -0,0 +1,14 @@
;;; package --- projectile
;;; Commentary:
;;; Code:
;;; https://github.com/bbatsov/projectile

(require-package 'projectile)

(projectile-mode +1)
(define-key projectile-mode-map (kbd "s-p") 'projectile-command-map)
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)

(provide 'init-projectile)

;;; init-projectile.el ends here

Loading…
Откажи
Сачувај