From 2d22b8224588b5ea03778de2fd678a001c10db3f Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sun, 29 Jan 2023 22:44:18 +0100 Subject: [PATCH] nvim: disable 'wrapscan' --- config/nvim/lua/user/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/config/nvim/lua/user/options.lua b/config/nvim/lua/user/options.lua index 1e35f36..30f95b2 100644 --- a/config/nvim/lua/user/options.lua +++ b/config/nvim/lua/user/options.lua @@ -29,6 +29,7 @@ o.shada = { -- Searching o.ignorecase = true -- Ignore case when searching... o.smartcase = true -- ...unless pattern contains uppercase characters. +o.wrapscan = false -- Don't wrap around the end of the file when searching. -- Editing o.expandtab = true -- use spaces when is inserted