branch: elpa/nix-mode
commit 10fc00dba892ea17bc09847f687b1ec2265e19c9
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>

    Fix bad setting for indent-tabs-mode.
---
 nix-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix-mode.el b/nix-mode.el
index 5696a19de2..edfd21b366 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -183,7 +183,7 @@ The hook `nix-mode-hook' is run when Nix mode is started.
 
   ;; Disable hard tabs and set tab to 2 spaces
   ;; Recommended by nixpkgs manual: 
https://nixos.org/nixpkgs/manual/#sec-syntax
-  (setq-local indent-tabs-mode t)
+  (setq-local indent-tabs-mode nil)
   (setq-local tab-width 2)
 
   ;; Font lock support.

Reply via email to