2023-12-15 19:49:42 +05:00
|
|
|
-- bootstrap lazy.nvim, LazyVim and your plugins
|
|
|
|
require("config.lazy")
|
2024-01-10 22:32:33 +05:00
|
|
|
|
|
|
|
vim.o.tabstop = 4 -- A TAB character looks like 4 spaces
|
|
|
|
vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
|
|
|
|
vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
|
|
|
|
vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting
|