From 47ff6876bc972394738f36660e3e44dabbd641e4 Mon Sep 17 00:00:00 2001 From: DonMatano Date: Tue, 30 Sep 2025 14:17:40 +0300 Subject: [PATCH] chore: update tab size --- init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.lua b/init.lua index b8cc0dd9..639d7115 100644 --- a/init.lua +++ b/init.lua @@ -99,6 +99,9 @@ vim.g.loaded_netrwPlugin = 1 -- See `:help vim.o` -- NOTE: You can change these options as you wish! -- For more options, you can see `:help option-list` +-- +vim.o.shiftwidth = 2 +vim.o.tabstop = 2 -- Make line numbers default vim.o.number = true @@ -141,6 +144,8 @@ vim.o.timeoutlen = 300 vim.o.splitright = 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. -- See `:help 'list'` -- and `:help 'listchars'`