feat: disable wraping

This commit is contained in:
Mikolaj_Bien 2025-05-06 09:44:25 +02:00
parent 96bc0c4b14
commit 3d6b0934b0
1 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,8 @@ vim.opt.splitbelow = true
vim.opt.list = false
vim.opt.listchars = { trail = '·', nbsp = '', tab = ' ' }
vim.opt.wrap = false
vim.opt.tabstop = 2 -- Number of spaces that a <Tab> in the file counts for
vim.opt.shiftwidth = 2 -- Number of spaces to use for each step of (auto)indent
vim.opt.expandtab = true -- Use spaces instead of actual tab characters