From de6febb53a25a5dc77ee7c11c54152b5041abad7 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Mon, 13 Jul 2026 13:49:40 +0100 Subject: [PATCH] Don't set global options for llvm filetype --- after/ftplugin/llvm.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/after/ftplugin/llvm.lua b/after/ftplugin/llvm.lua index 91ba25e..78d717a 100644 --- a/after/ftplugin/llvm.lua +++ b/after/ftplugin/llvm.lua @@ -1,3 +1,3 @@ -- Include % and . in keywords for easier navigation of ID's -vim.opt.iskeyword:append('%') -vim.opt.iskeyword:append('.') +vim.opt_local.iskeyword:append('%') +vim.opt_local.iskeyword:append('.')