Skip to content

Commit

Permalink
add projectile
Browse files Browse the repository at this point in the history
  • Loading branch information
newagebegins committed Mar 28, 2015
1 parent 1b8301d commit af40892
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
/elpa/
/history
/recentf
/projectile-bookmarks.eld
7 changes: 7 additions & 0 deletions init.el
Expand Up @@ -4,8 +4,10 @@

;; Packages that I want to be installed.
(setq my-packages '(helm
helm-projectile
markdown-mode
php-mode
projectile
scss-mode
web-mode))

Expand Down Expand Up @@ -56,6 +58,11 @@
(global-set-key (kbd "C-x b") 'helm-mini)
(global-set-key (kbd "C-x C-f") 'helm-find-files)

(projectile-global-mode)
(setq projectile-completion-system 'helm)
(require 'helm-projectile)
(helm-projectile-on)

(setq-default fill-column 80)
(setq-default indicate-empty-lines t)
(delete-selection-mode)
Expand Down

0 comments on commit af40892

Please sign in to comment.