From 5904428cefea8716850f51fb837af9117dfbab8f Mon Sep 17 00:00:00 2001 From: Folkert Kevelam Date: Sun, 8 Jun 2025 17:40:26 +0200 Subject: [PATCH] Add different tabsizes for Ada --- neovim/after/ftplugin/ada.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 neovim/after/ftplugin/ada.lua diff --git a/neovim/after/ftplugin/ada.lua b/neovim/after/ftplugin/ada.lua new file mode 100644 index 0000000..e44e18d --- /dev/null +++ b/neovim/after/ftplugin/ada.lua @@ -0,0 +1,9 @@ +vim.opt.smarttab = false + +vim.opt.tabstop = 4 + +vim.opt.shiftwidth = 3 + +vim.opt.expandtab = true + +vim.opt.softtabstop = 3