feat(neovim): use 4 spaces instead of tab

This commit is contained in:
Chayapak Supasakul 2025-12-08 20:51:21 +07:00
parent 4e416f8a0e
commit 9fdf3ec7a1
Signed by: ChomeNS
SSH key fingerprint: SHA256:0YoxhdyXsgbc0nfeB2N6FYE60mxMU7DS4uCUMaw2mvA

View file

@ -75,4 +75,9 @@ vim.o.autowriteall = true
vim.lsp.enable 'bashls'
vim.o.expandtab = true
vim.o.smartindent = true
vim.o.tabstop = 4
vim.o.shiftwidth = 4
-- vim: ts=2 sts=2 sw=2 et