12 lines
184 B
Nix
12 lines
184 B
Nix
|
{
|
||
|
flake.modules.nixvim.custom = {
|
||
|
extraFiles."after/ftplugin/just.lua".text =
|
||
|
# lua
|
||
|
''
|
||
|
local opt = vim.opt_local
|
||
|
|
||
|
opt.shiftwidth = 4
|
||
|
'';
|
||
|
};
|
||
|
}
|