Converting tabs to spaces, 4 spaces per tab

This commit is contained in:
Dimitar Ivanov 2023-12-16 18:58:54 +02:00
parent 1ff1e6f963
commit 88f159bbcc
1 changed files with 6 additions and 0 deletions

View File

@ -809,6 +809,12 @@ vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
-- Correct scroll level -- Correct scroll level
vim.o.scrolloff = 8 vim.o.scrolloff = 8
-- Correct tabstop
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.softtabstop = 4
vim.opt.expandtab = true
-- Exiting with a blinking cursor -- Exiting with a blinking cursor
vim.api.nvim_create_autocmd('VimLeave', { vim.api.nvim_create_autocmd('VimLeave', {
once = true, once = true,