dotfiles/dot_config/nvim/lua/utils/setindent.lua
2024-01-14 23:03:03 +09:00

11 lines
305 B
Lua

-- Functions
local setIndentWidth = function(w)
vim.opt.tabstop = w
vim.opt.softtabstop = w
vim.opt.shiftwidth = w
print("Tab width is now set", w)
end
vim.keymap.set('n', '<leader>T2', function() setIndentWidth(2) end)
vim.keymap.set('n', '<leader>T4', function() setIndentWidth(4) end)