Skip to content

Instantly share code, notes, and snippets.

@mattsears
Created October 27, 2014 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattsears/a22c8da706309a45148b to your computer and use it in GitHub Desktop.
Save mattsears/a22c8da706309a45148b to your computer and use it in GitHub Desktop.
;;----------------------------------------------------------------------------
;; 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