From b080fe68d58c82a6d507f51328ee4f30890cf56d Mon Sep 17 00:00:00 2001 From: oddlama Date: Mon, 4 Sep 2023 21:28:00 +0200 Subject: [PATCH] feat(nvim): use ts=2 for nix --- users/myuser/neovim/ftplugin/nix.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 users/myuser/neovim/ftplugin/nix.lua diff --git a/users/myuser/neovim/ftplugin/nix.lua b/users/myuser/neovim/ftplugin/nix.lua new file mode 100644 index 0000000..61d6fcf --- /dev/null +++ b/users/myuser/neovim/ftplugin/nix.lua @@ -0,0 +1,4 @@ +vim.opt_local.expandtab = true +vim.opt_local.tabstop = 2 +vim.opt_local.shiftwidth = 2 +vim.opt_local.softtabstop = 2