Files
emacs.d/elisp/ess-setup.el
Mateus Pinto Rodrigues 388b73da07 Update my configuration files
2018-03-27 20:54:18 -03:00

11 lines
302 B
EmacsLisp
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
;; better behavior inserting _
(require ess-smart-underscore)
;; enable code auto completion
(require 'auto-complete-config)
(ac-config-default)
(setq ac-auto-start nil)
(define-key ac-mode-map (kbd "<f2>") 'auto-complete)
(define-key ac-completing-map [return] nil)
(setq ac-quick-help-delay 0.1)