[init.lua] Actually set tabstops and shi.

This commit is contained in:
ahmedsamyh 2025-02-25 17:50:32 +05:00
parent 7643d536c2
commit 3375b8a9be
1 changed files with 3 additions and 3 deletions

View File

@ -1016,9 +1016,9 @@ vim.api.nvim_create_autocmd('BufWritePost', {
end,
})
vim.g.expandtab = true
vim.g.tabstop = 4
vim.g.shiftwidth = 4
vim.opt.tabstop = 4
vim.opt.expandtab = true
vim.opt.shiftwidth = 4
vim.keymap.set('n', '<leader>bd', ':bd<CR>')
vim.keymap.set('n', '<leader>bD', ':bd!<CR>')