mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
21 lines
412 B
EmacsLisp
21 lines
412 B
EmacsLisp
;;; siren-slim.el --- jimeh's Emacs Siren: slim-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for slim-mode.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-highlight-indentation)
|
|
|
|
(use-package slim-mode
|
|
:mode "\\.slim\\'"
|
|
:hook (slim-mode-hook . siren-slim-mode-hook)
|
|
|
|
:init
|
|
(defun siren-slim-mode-setup ()
|
|
(highlight-indentation-current-column-mode)))
|
|
|
|
(provide 'siren-slim)
|
|
;;; siren-slim.el ends here
|