mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
23 lines
340 B
EmacsLisp
23 lines
340 B
EmacsLisp
;;; siren-nix.el --- jimeh's Emacs Siren: nix-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for nix-mode.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-lsp)
|
|
|
|
(use-package nix-mode
|
|
:mode
|
|
"\\.nix\\'"
|
|
|
|
:hook
|
|
(nix-mode . siren-nix-mode-setup)
|
|
|
|
:preface
|
|
(defun siren-nix-mode-setup ()))
|
|
|
|
(provide 'siren-nix)
|
|
;;; siren-nix.el ends here
|