Adding filetype indent for JS cause 4 tabs were too much.

This commit is contained in:
Daniel Weber 2024-10-25 08:49:41 -04:00
parent dfc0e722a9
commit 85a938e71a

View File

@ -0,0 +1,4 @@
vim.bo.tabstop = 2 -- size of a hard tabstop (ts).
vim.bo.shiftwidth = 2 -- size of an indentation (sw).
vim.bo.expandtab = true -- always uses spaces instead of tab characters (et).
vim.bo.softtabstop = 2 -- number of spaces a <Tab> counts for. When 0, feature is off (sts).