mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
8 lines
506 B
Lua
8 lines
506 B
Lua
-- Options are automatically loaded before lazy.nvim startup
|
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
|
-- Add any additional options here
|
|
|
|
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
|