From 35c3fe1e33c2b8148b9d8b2cf8dd6e4fbafd9843 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 30 May 2018 11:08:50 -0700 Subject: [PATCH] Get rid of autocomplete enitrely from emacs --- dotfiles/emacs.d/init.el | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 8cac2c0..ef6a3a9 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -282,24 +282,6 @@ setq org-log-done t) (setq projectile-completion-system 'grizzl) ;;------------------------------------------------------------------------------------- -;; Use Grizzl with Projectile -;;------------------------------------------------------------------------------------- - -(setq projectile-completion-system 'grizzl) - - -;;------------------------------------------------------------------------------------- -;; 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 ;;------------------------------------------------------------------------------------