mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-04 02:38:46 +00:00
fix(dashboard): disable vim.wo.colorcolumn
(#101)
## Description If `colorcolumn` is set, e.g.: ```lua vim.opt.colorcolumn = { 80, 100 } -- Guide columns positions ``` The dashboard window shows the columns:  This PR add the missing window option
This commit is contained in:
parent
0cf22a8d87
commit
43b4abb9f1
1 changed files with 1 additions and 0 deletions
|
@ -142,6 +142,7 @@ Snacks.config.style("dashboard", {
|
|||
undofile = false,
|
||||
},
|
||||
wo = {
|
||||
colorcolumn = "",
|
||||
cursorcolumn = false,
|
||||
cursorline = false,
|
||||
list = false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue