We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d483d6 commit e20568fCopy full SHA for e20568f
init.lua
@@ -161,6 +161,12 @@ vim.opt.scrolloff = 10
161
-- See `:help 'confirm'`
162
vim.opt.confirm = true
163
164
+-- Tab/space options
165
+vim.o.tabstop = 4 -- A TAB character looks like 4 spaces
166
+vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
167
+vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
168
+vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting
169
+
170
-- [[ Basic Keymaps ]]
171
-- See `:help vim.keymap.set()`
172
0 commit comments