Created
October 27, 2014 13:23
-
-
Save mattsears/a22c8da706309a45148b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;---------------------------------------------------------------------------- | |
;; Autocomplete all the things | |
;;---------------------------------------------------------------------------- | |
(use-package auto-complete | |
:init | |
(progn | |
(ac-config-default) | |
(setq ac-ignore-case nil) | |
(add-to-list 'ac-modes 'ruby-mode) | |
(add-to-list 'ac-modes 'web-mode) | |
(add-to-list 'ac-modes 'sass-mode) | |
(add-to-list 'ac-modes 'haml-mode) | |
) | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment