add: default tab 4

This commit is contained in:
asep.komarudin 2024-07-05 06:59:04 +07:00
parent 03a3d5f32b
commit eace6b6674

View file

@ -75,11 +75,12 @@ if pcode.active_java_config.active then
} }
end, end,
config = function(_, opts) config = function(_, opts)
vim.opt_local.shiftwidth = 4 local opt = vim.opt
vim.opt_local.tabstop = 4 opt.shiftwidth = 4
vim.opt_local.softtabstop = 4 opt.tabstop = 4
vim.opt_local.ts = 4 opt.softtabstop = 4
vim.opt_local.expandtab = true opt.ts = 4
opt.expandtab = true
local mason_registry = require("mason-registry") local mason_registry = require("mason-registry")
local bundles = {} ---@type string[] local bundles = {} ---@type string[]