diff options
author | Brahmajit Das <listout@listout.xyz> | 2025-08-06 06:04:32 +0530 |
---|---|---|
committer | Brahmajit Das <listout@listout.xyz> | 2025-08-06 06:04:32 +0530 |
commit | 726a448916993967893a019019f6af5bd2073d8e (patch) | |
tree | f2c62a3ee25acc31fb3b1c2978e9c1b43d6812bf | |
parent | fb78aa1c7b820a581b4ef8661be09cf8ec67ace3 (diff) |
plugin/basics.lua: always display sign column
Signed-off-by: Brahmajit Das <listout@listout.xyz>
-rw-r--r-- | plugin/basics.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/basics.lua b/plugin/basics.lua index 8db4995..6184fe6 100644 --- a/plugin/basics.lua +++ b/plugin/basics.lua @@ -29,7 +29,7 @@ opt.incsearch = true opt.ignorecase = true opt.backspace = 'indent,eol,start' opt.exrc = true -opt.signcolumn = 'auto' -- Display only when there is a sign to display +opt.signcolumn = 'yes' -- Display only when there is a sign to display ----------------------------------------------------------- -- Tabs, indent |