recovery from stupid file loss and major update

This commit is contained in:
2023-02-10 04:39:34 +10:00
parent 49b4010bd7
commit b4157580f5
22 changed files with 664 additions and 0 deletions

11
lua/settings/tabs.lua Normal file
View File

@@ -0,0 +1,11 @@
-- Количество пробелов для сдвига
vim.opt.shiftwidth = 2
-- Количество пробелов при переносе строки (<CR>)
vim.opt.tabstop = 2
-- Подстраивать новые строки под предыдущий отступ
vim.opt.smartindent = true
-- Отступы вместо пробелов
vim.opt.expandtab = true