From c4b211dba73fd6dfb919384319af63e58058bf7a Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 3 Jan 2024 13:49:50 +0000 Subject: [PATCH] Explicitly require nix and nix-flake from nix-mode package --- README.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.org b/README.org index e6bafe6..3bfc6ff 100644 --- a/README.org +++ b/README.org @@ -1008,6 +1008,15 @@ Set treesit to fontify all elements, default was 3 (out of 4) rust-mode)) #+end_src ** Language-specific settings +*** Nix +#+begin_src emacs-lisp + (use-package nix-mode + :mode "\\.nix\\'" + :config + (require 'nix) + (require 'nix-flake)) +#+end_src + *** Python Set fill column to 88 and enable display in python buffers #+begin_src emacs-lisp :tangle yes