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:


![imagen](https://github.com/user-attachments/assets/72ee34e2-3b26-4940-8cdd-13dafdd11662)

This PR add the missing window option
This commit is contained in:
Eduardo Bray 2024-11-18 19:16:28 -03:00 committed by GitHub
parent 0cf22a8d87
commit 43b4abb9f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -142,6 +142,7 @@ Snacks.config.style("dashboard", {
undofile = false,
},
wo = {
colorcolumn = "",
cursorcolumn = false,
cursorline = false,
list = false,