tab changes

This commit is contained in:
Tyler Poon 2024-08-06 16:08:49 -07:00
parent 4134b59c07
commit 78e9f095d9
1 changed files with 5 additions and 0 deletions

View File

@ -157,6 +157,11 @@ 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
-- Tab settings
vim.bo.expandtab = true
vimm.bo.tabstop = 4
vim.bo.shiftwidth = 4
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()` -- See `:help vim.keymap.set()`