44a792f83c
Also removed redundant `mode` entries and instead added ones that are missing in original package. Updated README to represent this change and fixed typo in installation message about the layer name.
17 lines
458 B
EmacsLisp
17 lines
458 B
EmacsLisp
;;; packages.el --- shaders layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Alan Love <alan@cattes.us>
|
|
;; URL: https://github.com/ell
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GLPv3
|
|
(setq shaders-packages '(glsl-mode))
|
|
|
|
(defun shaders/init-glsl-mode ()
|
|
"Initialize GLSL mode"
|
|
(use-package glsl-mode
|
|
:mode (("\\.fsh\\'" . glsl-mode)
|
|
("\\.vsh\\'" . glsl-mode))))
|