Set tabstop

This commit is contained in:
Jonas Hagberg 2024-04-16 13:49:30 +02:00
parent c1383b1fe6
commit 74c9eb54d6
1 changed files with 4 additions and 0 deletions

View File

@ -154,6 +154,10 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor. -- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10 vim.opt.scrolloff = 10
-- Tabstop and shiftwidth settings
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()` -- See `:help vim.keymap.set()`