From 22b01f0a9beaed221eb461df6fb251c01df7401a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 7 Aug 2025 00:55:24 +0100 Subject: [PATCH] nixvim: ftplugin for just --- modules2/nixvim/ftplugin/just.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules2/nixvim/ftplugin/just.nix diff --git a/modules2/nixvim/ftplugin/just.nix b/modules2/nixvim/ftplugin/just.nix new file mode 100644 index 00000000..c9c4517c --- /dev/null +++ b/modules2/nixvim/ftplugin/just.nix @@ -0,0 +1,11 @@ +{ + flake.modules.nixvim.custom = { + extraFiles."after/ftplugin/just.lua".text = + # lua + '' + local opt = vim.opt_local + + opt.shiftwidth = 4 + ''; + }; +}