Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@ require("virt-column").setup()

Please see `:help virt-column.txt`for more details and all possible values.

## FAQ

#### I don't see anything

Ensure that colorcolumn is set.
```lua
vim.opt.colorcolumn="120"
```
#### I still see the regular color column behind virt-column

Ensure that ColorColumn highlight is properly cleared. If your colorscheme is setting it, you can use:
```lua
vim.cmd([[autocmd ColorScheme * highlight clear ColorColumn]])
```

## Thanks

Thank you @francium for the idea.