Update emacs config
This commit is contained in:
parent
a5d3b8fb82
commit
ba84e391c3
2 changed files with 19 additions and 1 deletions
5
emacs/.gitignore
vendored
5
emacs/.gitignore
vendored
|
|
@ -13,3 +13,8 @@ elpa
|
||||||
|
|
||||||
# bookmarks
|
# bookmarks
|
||||||
bookmarks
|
bookmarks
|
||||||
|
|
||||||
|
# projectile
|
||||||
|
projectile-bookmarks.eld
|
||||||
|
projectile.cache
|
||||||
|
recentf
|
||||||
|
|
|
||||||
|
|
@ -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" . ?λ)))))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue