Add restclient package

This commit is contained in:
Jesús 2022-03-07 01:24:28 +08:00
parent aba5e59b02
commit 242f5ec765
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 18 additions and 2 deletions

View File

@ -9,7 +9,7 @@
'(anzu-replace-to-string-separator " => ")
'(anzu-search-threshold 1000)
'(package-selected-packages
'(git-gutter-fringe yaml-mode whitespace-cleanup-mode which-key web-mode vue-mode use-package undo-tree tide smartparens sass-mode rainbow-mode py-autopep8 projectile prettier-js pkgbuild-mode pip-requirements php-refactor-mode nginx-mode neotree lua-mode lsp-ui log4j-mode load-env-vars json-mode js2-refactor ivy-rich ivy-hydra highlight-indent-guides go-mode git-timemachine git-modes eslintd-fix emmet-mode elpy editorconfig dotenv-mode doom-themes doom-modeline dokuwiki-mode dockerfile-mode diminish dashboard dap-mode crystal-mode counsel company-quickhelp company-php apache-mode anzu)))
'(git-gutter-fringe yaml-mode whitespace-cleanup-mode which-key web-mode vue-mode use-package undo-tree tide smartparens sass-mode restclient rainbow-mode py-autopep8 projectile prettier-js pkgbuild-mode pip-requirements php-refactor-mode nginx-mode neotree lua-mode lsp-ui log4j-mode load-env-vars json-mode js2-refactor ivy-rich ivy-hydra highlight-indent-guides go-mode git-timemachine git-modes eslintd-fix emmet-mode elpy editorconfig dotenv-mode doom-themes doom-modeline dokuwiki-mode dockerfile-mode diminish dashboard dap-mode crystal-mode counsel company-quickhelp company-php apache-mode anzu)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -120,7 +120,8 @@
(require 'init-dockerfile)
(require 'init-dokuwiki)
(require 'init-linter)
(require 'init-load-env-vars))
(require 'init-load-env-vars)
(require 'init-restclient))
;;; Custom variables
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))

View File

@ -0,0 +1,15 @@
;;; init-restclient.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;----------------------------------------------------------------------------
;; Restclient, similar to postman but in emacs
;;----------------------------------------------------------------------------
(use-package restclient
:mode ("\\.http\\'" . restclient-mode))
(provide 'init-restclient)
;; End:
;;; init-restclient.el ends here