From db6a1ac3ea07f02d60a5cec973ca531c0546c2b5 Mon Sep 17 00:00:00 2001 From: Fabian Schmidt Date: Thu, 11 Dec 2025 08:02:48 +0100 Subject: [PATCH] special config for cpp projects --- after/ftplugin/cpp.lua | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 after/ftplugin/cpp.lua diff --git a/after/ftplugin/cpp.lua b/after/ftplugin/cpp.lua new file mode 100644 index 0000000..bd84758 --- /dev/null +++ b/after/ftplugin/cpp.lua @@ -0,0 +1,4 @@ +vim.opt.shiftwidth = 2 +vim.opt.tabstop = 2 +vim.opt.softtabstop = 2 +vim.opt.expandtab = true