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

@ -208,6 +208,9 @@ require('lazy').setup({
concurrency = 10,
})
vim.o.wrap = true
vim.o.relativenumber = true
-- [[ Setting options ]]
-- See `:help vim.o`
-- NOTE: You can change these options as you wish!

View File

@ -2,4 +2,6 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
vim.o.wrap = true
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.winminwidth = 5 -- Minimum window width
-- opt.wrap = false -- Disable line wrap
opt.wrap = true
if vim.fn.has 'nvim-0.9.0' == 1 then
opt.splitkeep = 'screen'