Projectile, dired, etc.

This commit is contained in:
madmaurice 2017-10-03 20:36:55 +02:00
parent 6d821dfe18
commit b771b4a4fd

View file

@ -36,6 +36,7 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ac-ignore-case nil)
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(ansi-color-names-vector
@ -49,6 +50,7 @@
'(custom-safe-themes
(quote
("4f2ede02b3324c2f788f4e0bad77f7ebc1874eff7971d2a2c9b9724a50fb3f65" default)))
'(dired-listing-switches "-lh")
'(global-evil-surround-mode t)
'(indent-tabs-mode nil)
'(inhibit-startup-screen t)
@ -157,7 +159,9 @@
(use-package projectile
:ensure t
:demand t
:config (projectile-global-mode t))
:config (progn
(projectile-global-mode t)
(setq projectile-completion-system 'ivy)))
;; Auto-Complete
(use-package auto-complete