Make tabs behave

This commit is contained in:
Imbus 2024-07-22 01:36:00 +02:00
parent 1f4ef6856f
commit 4fea989416

View file

@ -59,4 +59,11 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10
-- Make tabs behave
vim.opt.smarttab = true
vim.opt.expandtab = true
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.softtabstop = 2
-- vim: ts=2 sts=2 sw=2 et