mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +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,
|
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[]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue