This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/layers/+frameworks/phoenix/packages.el
Boris Buliga d81e75584e
bump year in the copyright headers
Folks, this time of year has come. We can bump year in the copyright headers.
Let's celebrate!
2018-10-16 20:27:05 +03:00

28 lines
959 B
EmacsLisp

;;; packages.el --- phoenix layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Lyuben Petrov <lyuben.y.petrov@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst phoenix-packages
'(alchemist))
(defun phoenix/post-init-alchemist ()
(progn
(spacemacs/declare-prefix-for-mode 'elixir-mode "mf" "phoenix")
(spacemacs/declare-prefix-for-mode 'elixir-mode "mff" "find")
(spacemacs/set-leader-keys-for-major-mode 'elixir-mode
"ffw" 'alchemist-phoenix-find-web
"ffv" 'alchemist-phoenix-find-views
"ffc" 'alchemist-phoenix-find-controllers
"ffC" 'alchemist-phoenix-find-channels
"fft" 'alchemist-phoenix-find-templates
"ffm" 'alchemist-phoenix-find-models
"ffs" 'alchemist-phoenix-find-static
"ffr" 'alchemist-phoenix-router
"fr" 'alchemist-phoenix-routes)))