languages/nix: remove hardcoded indentation options

This commit is contained in:
raf 2025-01-18 20:19:08 +03:00 committed by diniamo
parent e7649d1ec5
commit 4200828526

View file

@ -187,17 +187,6 @@ in {
'';
}
];
vim.pluginRC.nix = ''
vim.api.nvim_create_autocmd("FileType", {
pattern = "nix",
callback = function(opts)
local bo = vim.bo[opts.buf]
bo.tabstop = 2
bo.shiftwidth = 2
bo.softtabstop = 2
end
})
'';
}
(mkIf cfg.treesitter.enable {