Created
November 4, 2010 01:22
-
-
Save tototoshi/661999 to your computer and use it in GitHub Desktop.
my-auto-complete-config.el
This file contains hidden or 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
;;==================================== | |
;;; auto-complete.el | |
;;==================================== | |
(require 'auto-complete-config) | |
(ac-config-default) | |
(global-auto-complete-mode t) | |
(add-to-list 'ac-modes 'org-mode) | |
(add-to-list 'ac-modes 'python-mode) | |
(add-to-list 'ac-modes 'text-mode) | |
(add-to-list 'ac-modes 'shell-script-mode) | |
(add-to-list 'ac-modes 'fundamental-mode) | |
(add-to-list 'ac-modes 'lisp-interaction-mode) | |
(add-to-list 'ac-modes 'php-mode) | |
(add-to-list 'ac-modes 'python-mode) | |
;; 大文字・小文字を区別する | |
(setq ac-ignore-case nil) | |
(setq ac-auto-start nil) | |
(ac-set-trigger-key "TAB") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment