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
38 lines
841 B
EmacsLisp
38 lines
841 B
EmacsLisp
;;; siren-conf.el --- jimeh's Emacs Siren: conf-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for conf-mode.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-fci)
|
|
(require 'siren-flyspell)
|
|
(require 'siren-linum)
|
|
(require 'siren-prog-mode)
|
|
(require 'siren-flycheck)
|
|
(require 'siren-highlight-indentation)
|
|
(require 'siren-highlight-symbol)
|
|
(require 'siren-smartparens)
|
|
|
|
(use-package conf-mode
|
|
:mode "Procfile\\'" "\\.conf\\'" "\\.cfg\\'"
|
|
:hook (conf-mode . siren-conf-mode-setup)
|
|
|
|
:init
|
|
(defun siren-conf-mode-setup ()
|
|
(siren-prog-mode-setup)
|
|
(setq tab-width 2)
|
|
|
|
(fci-mode)
|
|
(flycheck-mode)
|
|
(flyspell-prog-mode)
|
|
(highlight-indentation-current-column-mode)
|
|
(highlight-indentation-set-offset 2)
|
|
(highlight-symbol-mode)
|
|
(linum-mode)
|
|
(smartparens-mode)))
|
|
|
|
(provide 'siren-conf)
|
|
;;; siren-conf.el ends here
|