diff options
author | Alan Pearce | 2017-02-01 16:46:09 +0100 |
---|---|---|
committer | Alan Pearce | 2017-02-01 16:46:09 +0100 |
commit | e4e278906803759063a61a285fc74e331e142e9f (patch) | |
tree | 96a07fa54f939d225c611ecf07b6db3a3fa199b4 /tag-emacs/emacs.d | |
parent | 7c5d4880ec9eb293405284a4650b0ff0a237cc2e (diff) | |
download | nixfiles-e4e278906803759063a61a285fc74e331e142e9f.tar.lz nixfiles-e4e278906803759063a61a285fc74e331e142e9f.tar.zst nixfiles-e4e278906803759063a61a285fc74e331e142e9f.zip |
Emacs: Install and configure company-restclient
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 95f1cd17..08817cf8 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2025,6 +2025,10 @@ integration between the two yet. (add-to-list 'imenu-generic-expression '("Services" "^## ?\\(.+\\)$" 1) t) (add-to-list 'imenu-generic-expression '("Calls" "^# ?\\(.+\\)$" 1) t)) (add-hook 'restclient-mode-hook #'imenu-restclient-sections))) + +(use-package company-restclient + :after (company restclient) + :init (add-to-list 'company-backends #'company-restclient t)) #+END_SRC *** sgml-mode |