nix-config/modules/nixvim/ftplugin/just.nix

12 lines
184 B
Nix
Raw Normal View History

2025-08-07 00:55:24 +01:00
{
flake.modules.nixvim.custom = {
extraFiles."after/ftplugin/just.lua".text =
# lua
''
local opt = vim.opt_local
opt.shiftwidth = 4
'';
};
}