fix: desperate attempt at wrapping
This commit is contained in:
parent
d90e454f60
commit
732544a6bc
5
init.lua
5
init.lua
|
@ -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`
|
||||||
|
|
|
@ -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 {}
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue