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