neovim making tabs smaller

This commit is contained in:
Ivan Dimitrov 2023-09-14 15:29:53 +03:00
parent b9012ecff1
commit 556df18f21

View File

@ -4,6 +4,9 @@ vim.o.scrolloff = 15 -- scrll if n lines left
vim.o.hlsearch = false -- highlight search vim.o.hlsearch = false -- highlight search
vim.o.updatetime = 20 vim.o.updatetime = 20
vim.o.autoread = true vim.o.autoread = true
vim.o.tabstop = 4
vim.o.shiftwidth = 4
vim.o.expandtab = true
vim.g.mapleader = " " -- leader space vim.g.mapleader = " " -- leader space
vim.g.maplocalleader = " " vim.g.maplocalleader = " "