Change tab size and tab to spaces in nvim

This commit is contained in:
Mateusz Słodkowicz 2026-03-21 19:52:35 +01:00
parent 7111005253
commit a0af6e0844
Signed by: materus
SSH Key Fingerprint: SHA256:rzVduzTiiszuYfLPYD0SDZV+g8lxhpcRgpbOZA1X0Uo

View File

@ -1,4 +1,8 @@
vim.wo.number = true
vim.opt.number = true
vim.opt.expandtab = true
vim.opt.shiftwidth = 4
vim.opt.softtabstop = 4
vim.opt.tabstop = 4
vim.opt.clipboard:append { 'unnamed', 'unnamedplus' }
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"