diff options
| author | Daniel Schadt <kingdread@gmx.de> | 2016-09-01 18:05:31 +0200 | 
|---|---|---|
| committer | Daniel Schadt <kingdread@gmx.de> | 2016-09-01 18:05:31 +0200 | 
| commit | cec01a4a3ebd07fe34dc7a54972b422e1a8c2a8b (patch) | |
| tree | 6a056f93c63f4ec77bdd103e451cef04a1e35f82 /spacemacs/.spacemacs | |
| parent | 45f2e6ab18eb3bab2b74880ed1f8b211e21596f9 (diff) | |
| download | dotfiles-cec01a4a3ebd07fe34dc7a54972b422e1a8c2a8b.tar.gz dotfiles-cec01a4a3ebd07fe34dc7a54972b422e1a8c2a8b.tar.bz2 dotfiles-cec01a4a3ebd07fe34dc7a54972b422e1a8c2a8b.zip | |
spacemacs: add irony as company backend
This should provide auto-completion with clang's help.
Diffstat (limited to 'spacemacs/.spacemacs')
| -rw-r--r-- | spacemacs/.spacemacs | 14 | 
1 files changed, 9 insertions, 5 deletions
| diff --git a/spacemacs/.spacemacs b/spacemacs/.spacemacs index bac8acc..4cc25ea 100644 --- a/spacemacs/.spacemacs +++ b/spacemacs/.spacemacs @@ -3,6 +3,9 @@          dotspacemacs-distribution 'spacemacs          dotspacemacs-configuration-layers '(              auto-completion +            irony-mode +            version-control +            git              haskell              python              c-c++ @@ -27,19 +30,20 @@   ;; If you edit it by hand, you could mess it up, so be careful.   ;; Your init file should contain only one such instance.   ;; If there is more than one, they won't work right. - '(ac-ispell-requires 4) + '(ac-ispell-requires 4 t)   '(ahs-case-fold-search nil)   '(ahs-default-range (quote ahs-range-whole-buffer))   '(ahs-idle-interval 0.25)   '(ahs-idle-timer 0 t)   '(ahs-inhibit-face-list nil) + '(c-basic-offset 4)   '(haskell-interactive-popup-error nil t)   '(haskell-mode-hook (quote (spacemacs/init-haskell-mode ghc-init)) t) - '(haskell-notify-p t) - '(haskell-process-auto-import-loaded-modules t) - '(haskell-process-suggest-remove-import-lines t) + '(haskell-notify-p t t) + '(haskell-process-auto-import-loaded-modules t t) + '(haskell-process-suggest-remove-import-lines t t)   '(haskell-process-type (quote auto)) - '(haskell-stylish-on-save nil) + '(haskell-stylish-on-save nil t)   '(haskell-tags-on-save t)   '(ring-bell-function (quote ignore) t)   '(safe-local-variable-values (quote ((encoding . utf-8))))) | 
