fix: desperate attempt at wrapping

This commit is contained in:
Thomas Alcala Schneider 2023-07-21 16:22:27 +02:00
parent d90e454f60
commit 732544a6bc
3 changed files with 7 additions and 1 deletions

View File

@ -206,7 +206,10 @@ require('lazy').setup({
{ import = 'custom.plugins' }, { import = 'custom.plugins' },
}, { }, {
concurrency = 10, concurrency = 10,
}) })
vim.o.wrap = true
vim.o.relativenumber = true
-- [[ Setting options ]] -- [[ Setting options ]]
-- See `:help vim.o` -- See `:help vim.o`

View File

@ -2,4 +2,6 @@
-- I promise not to create any merge conflicts in this directory :) -- I promise not to create any merge conflicts in this directory :)
-- --
-- See the kickstart.nvim README for more information -- See the kickstart.nvim README for more information
vim.o.wrap = true
return {} return {}

View File

@ -46,6 +46,7 @@ opt.updatetime = 200 -- Save swap file and trigger CursorHold
opt.wildmode = 'longest:full,full' -- Command-line completion mode opt.wildmode = 'longest:full,full' -- Command-line completion mode
opt.winminwidth = 5 -- Minimum window width opt.winminwidth = 5 -- Minimum window width
-- opt.wrap = false -- Disable line wrap -- opt.wrap = false -- Disable line wrap
opt.wrap = true
if vim.fn.has 'nvim-0.9.0' == 1 then if vim.fn.has 'nvim-0.9.0' == 1 then
opt.splitkeep = 'screen' opt.splitkeep = 'screen'