diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-09-09 05:55:36 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-09-09 05:55:36 +0530 |
commit | 99a769ba4e0bbc82b17962f26b6e57ac5fc8dfa6 (patch) | |
tree | 6dacd1eed16b460100b78fadce20645fa4e9daec | |
parent | c873020aa2c3eb09fe8769f49afaf62e4c18f711 (diff) |
nvim: appearance: use global colorcolumn of 120
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r-- | lua/appearance.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/appearance.lua b/lua/appearance.lua index 1626a1b..3151523 100644 --- a/lua/appearance.lua +++ b/lua/appearance.lua @@ -14,6 +14,7 @@ opt.smartcase = true -- Ignore lowercase for the whole pattern opt.linebreak = true -- Wrap on word boundary opt.termguicolors = true -- Enable 24-bit RGB colors opt.laststatus = 2 -- Set global statusline +opt.colorcolumn = "120" -- Set global color column opt.splitbelow = true opt.splitright = true opt.scrolloff = 2 |