mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
add: default tab 4
This commit is contained in:
parent
03a3d5f32b
commit
eace6b6674
1 changed files with 6 additions and 5 deletions
|
@ -75,11 +75,12 @@ if pcode.active_java_config.active then
|
|||
}
|
||||
end,
|
||||
config = function(_, opts)
|
||||
vim.opt_local.shiftwidth = 4
|
||||
vim.opt_local.tabstop = 4
|
||||
vim.opt_local.softtabstop = 4
|
||||
vim.opt_local.ts = 4
|
||||
vim.opt_local.expandtab = true
|
||||
local opt = vim.opt
|
||||
opt.shiftwidth = 4
|
||||
opt.tabstop = 4
|
||||
opt.softtabstop = 4
|
||||
opt.ts = 4
|
||||
opt.expandtab = true
|
||||
|
||||
local mason_registry = require("mason-registry")
|
||||
local bundles = {} ---@type string[]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue