Browse Source

Fix autocomplete in init.el

master
Taylor Bockman 9 years ago
parent
commit
96fca8718f
  1. 4
      dotfiles/emacs.d/ac-comphist.dat
  2. 11
      dotfiles/emacs.d/init.el

4
dotfiles/emacs.d/ac-comphist.dat

@ -0,0 +1,4 @@
((("Packages" .
[0 0 0 1 0 0 0 0])
("require" .
[2 0 0 0 0 0 0])))

11
dotfiles/emacs.d/init.el

@ -92,6 +92,17 @@
(ido-mode 1)
;;-------------------------------------------------------------------------------------
;; Enable Autocomplete
;;
;; NOTE: You can replace the 't' in (setq ac-auto-start t) with a positive integer
;; to trigger autocompletion only after that number of characters. This will
;; improve performance on slower systems.
;;-------------------------------------------------------------------------------------
(global-auto-complete-mode t)
(setq ac-auto-start t)
;;-------------------------------------------------------------------------------------
;; ZSH script detection
;;------------------------------------------------------------------------------------

Loading…
Cancel
Save