Add restclient package
This commit is contained in:
parent
aba5e59b02
commit
242f5ec765
@ -9,7 +9,7 @@
|
|||||||
'(anzu-replace-to-string-separator " => ")
|
'(anzu-replace-to-string-separator " => ")
|
||||||
'(anzu-search-threshold 1000)
|
'(anzu-search-threshold 1000)
|
||||||
'(package-selected-packages
|
'(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
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
3
init.el
3
init.el
@ -120,7 +120,8 @@
|
|||||||
(require 'init-dockerfile)
|
(require 'init-dockerfile)
|
||||||
(require 'init-dokuwiki)
|
(require 'init-dokuwiki)
|
||||||
(require 'init-linter)
|
(require 'init-linter)
|
||||||
(require 'init-load-env-vars))
|
(require 'init-load-env-vars)
|
||||||
|
(require 'init-restclient))
|
||||||
|
|
||||||
;;; Custom variables
|
;;; Custom variables
|
||||||
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
|
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
|
||||||
|
15
modules/init-restclient.el
Normal file
15
modules/init-restclient.el
Normal 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
|
Loading…
x
Reference in New Issue
Block a user