From b5eb5203aab4c0bd34c29b3b04e4452c19bb6b54 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Tue, 20 May 2025 17:51:02 +0200 Subject: [PATCH] less: Add --ignore-case to LESS --- .config/zsh/.zprofile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index 9be4c32..db0b098 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -122,6 +122,8 @@ LESS+="${LESS:+ }--RAW-CONTROL-CHARS" # With v530 it does not enter alternate mode if the content fits in one # screen. LESS+="${LESS:+ }--quit-if-one-screen" +# Ignore case if the search pattern is only lowercase +LESS+="${LESS:+ }--ignore-case" export LESS # Use neovim's man plugin as manpager