SpacemacsにカスタムLayerを追加するサンプルを作りました
インポート方法
カスタムレイヤーを格納する場所(~/.emacs.d/private/
)に移動します。
cd ~/.emacs.d/private/
サンプルレイヤーをcloneします。
https://github.com/kentakozuka/my-layer.git
~/.spacemacs
のdotspacemacs-configuration-layers
にmy-layer
を追加します。
...
;; List of configuration layers to load.
dotspacemacs-configuration-layers
'(
;; ----------------------------------------------------------------
;; Example of useful layers you may want to use right away.
;; Uncomment some layer names and press `SPC f e R' (Vim style) or
;; `M-m f e R' (Emacs style) to install them.
;; ----------------------------------------------------------------
...
my-layer
)
...
.spacemacs
をリロードしてインポートは終了です。
使ってみる
あとは、拡張子が.mm
のファイルを作成し(e.g. sample.mm
)、spacemacsで開くとモードラインにMM
が表示されます。
SPC m h w
をタイプするとHello, world!
がバッファーに挿入されます。