Merge pull request #1 from Madisonkanna/mk/exploration

add tabstop, shiftwidth and autoindent
This commit is contained in:
Madison Kanna 2024-05-29 13:27:32 -07:00 committed by GitHub
commit 1a72e342d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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.
vim.opt.scrolloff = 10
vim.opt.autoindent = true
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`