From 420082852636b812c9e9c6bdd4b6ecdc072030b6 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 18 Jan 2025 20:19:08 +0300 Subject: [PATCH] languages/nix: remove hardcoded indentation options --- modules/plugins/languages/nix.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/plugins/languages/nix.nix b/modules/plugins/languages/nix.nix index 1120633c..4056a415 100644 --- a/modules/plugins/languages/nix.nix +++ b/modules/plugins/languages/nix.nix @@ -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 {