nvim: disable 'wrapscan'

This commit is contained in:
Fernando Schauenburg 2023-01-29 22:44:18 +01:00
parent 55239a2977
commit 2d22b82245

View file

@ -29,6 +29,7 @@ o.shada = {
-- Searching -- Searching
o.ignorecase = true -- Ignore case when searching... o.ignorecase = true -- Ignore case when searching...
o.smartcase = true -- ...unless pattern contains uppercase characters. o.smartcase = true -- ...unless pattern contains uppercase characters.
o.wrapscan = false -- Don't wrap around the end of the file when searching.
-- Editing -- Editing
o.expandtab = true -- use spaces when <Tab> is inserted o.expandtab = true -- use spaces when <Tab> is inserted