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