spacemacs/layers/+tools/restclient/packages.el
syl20bnr 89d5aad0a5 Various tweaks to golden-ratio configuration
- Prefer add-to-list function to alter golden-ratio variables so the lists
are less likely to grows as users reload their spacemacs config.
- Move some config to layers when appropriate
- Sort alphabetically the values
- Remove some duplicates in exclude-modes
2016-06-08 10:17:08 -04:00

43 lines
1.3 KiB
EmacsLisp

;;; packages.el --- restclient Layer Packages File
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq restclient-packages
'(
golden-ratio-
ob-http
restclient
))
(defun restclient/pre-init-golden-ratio ()
(spacemacs|use-package-add-hook golden-ratio
:post-config (add-to-list 'golden-ratio-exclude-modes "restclient-mode")))
(defun restclient/init-ob-http ()
(when restclient-use-org
(add-to-list 'auto-mode-alist '("\\.http\\'" . org-mode)))
(spacemacs|use-package-add-hook org
:post-config
(use-package ob-http
:init (add-to-list 'org-babel-load-languages '(http . t)))))
(defun restclient/init-restclient ()
(use-package restclient
:defer t
:init
(progn
(unless restclient-use-org
(add-to-list 'auto-mode-alist '("\\.http\\'" . restclient-mode)))
(spacemacs/set-leader-keys-for-major-mode 'restclient-mode
"s" 'restclient-http-send-current-stay-in-window
"S" 'restclient-http-send-current
"r" 'restclient-http-send-current-raw-stay-in-window
"R" 'restclient-http-send-current-raw
"y" 'restclient-copy-curl-command))))