chore: update tab size

This commit is contained in:
DonMatano 2025-09-30 14:17:40 +03:00
parent 3cf65467c4
commit 47ff6876bc
1 changed files with 5 additions and 0 deletions

View File

@ -99,6 +99,9 @@ vim.g.loaded_netrwPlugin = 1
-- See `:help vim.o` -- See `:help vim.o`
-- NOTE: You can change these options as you wish! -- NOTE: You can change these options as you wish!
-- For more options, you can see `:help option-list` -- For more options, you can see `:help option-list`
--
vim.o.shiftwidth = 2
vim.o.tabstop = 2
-- Make line numbers default -- Make line numbers default
vim.o.number = true vim.o.number = true
@ -141,6 +144,8 @@ vim.o.timeoutlen = 300
vim.o.splitright = true vim.o.splitright = true
vim.o.splitbelow = true vim.o.splitbelow = true
vim.o.guicursor = 'n-v-c:block,i:ver25'
-- Sets how neovim will display certain whitespace characters in the editor. -- Sets how neovim will display certain whitespace characters in the editor.
-- See `:help 'list'` -- See `:help 'list'`
-- and `:help 'listchars'` -- and `:help 'listchars'`