From f5f16c635d25b2083d9063bf70d62ba632fb4491 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Wed, 4 Feb 2026 22:34:07 +0100 Subject: Neovim: Optionen in den ftplugin-Einstellungen etwas aufgerÀumt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nvim/ftplugin/taskwarrior.lua | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'nvim/ftplugin/taskwarrior.lua') diff --git a/nvim/ftplugin/taskwarrior.lua b/nvim/ftplugin/taskwarrior.lua index 833a35c..a3c4537 100644 --- a/nvim/ftplugin/taskwarrior.lua +++ b/nvim/ftplugin/taskwarrior.lua @@ -1,5 +1,7 @@ -vim.opt_local.smartindent = false -vim.opt_local.cindent = false -vim.opt_local.autoindent = false -vim.opt_local.indentexpr = "" -vim.opt_local.indentkeys = "" +local opt = vim.opt_local + +opt.autoindent = false +opt.cindent = false +opt.indentexpr = "" +opt.indentkeys = "" +opt.smartindent = false -- cgit v1.3