mirror of
https://github.com/hyzendust/KickestEnd.nvim.git
synced 2026-02-15 00:21:15 +01:00
Add: line wrap.
This commit is contained in:
3
init.lua
3
init.lua
@@ -283,6 +283,9 @@ require('lazy').setup({
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.o`
|
||||
|
||||
-- Line wrap
|
||||
vim.opt.wrap = true
|
||||
|
||||
-- Set highlight on search
|
||||
vim.o.hlsearch = false
|
||||
|
||||
|
||||
@@ -153,7 +153,7 @@ return {
|
||||
signcolumn = 'yes', -- show sign column
|
||||
cursorline = false, -- no cursorline by default
|
||||
foldenable = true, -- enable folds
|
||||
wrap = false, -- no line wrap
|
||||
wrap = true, -- line wrap
|
||||
spell = false, -- disable spell
|
||||
}
|
||||
local win = vim.api.nvim_get_current_win()
|
||||
|
||||
@@ -108,7 +108,7 @@ return {
|
||||
signcolumn = 'yes', -- show sign column
|
||||
cursorline = false, -- no cursorline by default
|
||||
foldenable = true, -- enable folds
|
||||
wrap = false, -- no line wrap
|
||||
wrap = true, -- line wrap
|
||||
spell = false, -- disable spell
|
||||
}
|
||||
local win = vim.api.nvim_get_current_win()
|
||||
|
||||
Reference in New Issue
Block a user