1
0
Fork 0

Update emacs config

This commit is contained in:
Jeremy Kaplan 2017-09-23 01:38:46 -07:00
commit ba84e391c3
2 changed files with 19 additions and 1 deletions

5
emacs/.gitignore vendored
View file

@ -13,3 +13,8 @@ elpa
# bookmarks # bookmarks
bookmarks bookmarks
# projectile
projectile-bookmarks.eld
projectile.cache
recentf

View file

@ -10,7 +10,8 @@
"<SPC>" 'evil-ex "<SPC>" 'evil-ex
"e" 'find-file "e" 'find-file
"f" 'find-file "f" 'helm-for-files
"p" 'helm-projectile-find-file
"b" 'switch-to-buffer "b" 'switch-to-buffer
"w" 'save-buffer "w" 'save-buffer
"q" 'kill-this-buffer "q" 'kill-this-buffer
@ -154,3 +155,15 @@
(add-hook 'tex-mode-hook 'turn-on-auto-fill) (add-hook 'tex-mode-hook 'turn-on-auto-fill)
(require 'go-mode) (require 'go-mode)
(projectile-global-mode)
(setq projectile-completion-system 'helm)
(setq projectile-enable-caching t)
(require 'helm-config)
(helm-mode 1)
(helm-projectile-on)
(add-hook 'python-mode-hook
(lambda ()
(setq prettify-symbols-alist '(("lambda" . )))))