spacemacs/layers/+tools/web-beautify/packages.el
Thanh Vuong f63009ae20 Fix keybindings overwritten by LSP
change prettier/web-beautify to `scp m = =` to avoid being
overridden by lsp
2019-01-21 22:59:56 +02:00

20 lines
551 B
EmacsLisp

;;; packages.el --- web-beautify Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 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 web-beautify-packages '(web-beautify))
(defun web-beautify/init-web-beautify ()
(use-package web-beautify
:defer t
:init
(dolist (x spacemacs--web-beautify-modes)
(spacemacs/set-leader-keys-for-major-mode (car x) "==" (cdr x)))))