From 42d1382b749552b25bc9d698f56124791e7d6707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 6 Aug 2023 18:58:31 +0200 Subject: [PATCH] fix(editorconfig): python and makefile --- configs/neovim.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configs/neovim.nix b/configs/neovim.nix index 7c17dfd..26845f0 100644 --- a/configs/neovim.nix +++ b/configs/neovim.nix @@ -20,6 +20,15 @@ indent_style = "space"; indent_size = 2; }; + "*.py" = { + indent_size = 4; + }; + Makefile = { + indent_style = "tab"; + }; + "*.md" = { + trim_trailing_whitespace = false; + }; }; }; };