emacs/custom/setup-autocompletion.el
laurensmiers 70662a4f65 Add programming section
- Setup company/ivory/flycheck
  - basic setup
2018-06-13 00:38:20 +02:00

8 lines
272 B
EmacsLisp

;; Add irony as flycheck hook
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook 'flycheck-irony-setup))
;; Set tab to autocomplete or indent depending on context
(global-set-key (kbd "<tab>") 'company-indent-or-complete-common)
(provide 'setup-autocompletion)