From 15b579e873ddc975dd8a85395418f489c781f033 Mon Sep 17 00:00:00 2001 From: Bruno Carlin Date: Tue, 10 Oct 2023 16:48:00 +0200 Subject: [PATCH] feat(nvim): add indentation settings for lua --- nvim/.config/nvim/lua/settings/types.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/.config/nvim/lua/settings/types.lua b/nvim/.config/nvim/lua/settings/types.lua index e657cba..590c78b 100644 --- a/nvim/.config/nvim/lua/settings/types.lua +++ b/nvim/.config/nvim/lua/settings/types.lua @@ -6,6 +6,7 @@ vim.cmd [[ autocmd FileType html.handlebars setlocal ts=2 sts=2 sw=2 expandtab autocmd FileType java setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType javascript setlocal ts=2 sts=2 sw=2 expandtab + autocmd FileType lua setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType md setlocal tw=80 ts=2 sts=2 sw=2 expandtab autocmd FileType rst setlocal tw=80 ts=3 sts=3 sw=3 expandtab autocmd FileType sh setlocal tw=80 ts=2 sts=2 sw=2 expandtab