Neovim-from-scratch icon indicating copy to clipboard operation
Neovim-from-scratch copied to clipboard

Setting `colorcolumn` doesn't work

Open Munzu opened this issue 2 years ago • 1 comments

I was very confused why setting this in options.lua doesn't work:

local options = {
  ...
  colorcolumn = "80",
}

Turns out it was overwritten by this line here that was a hacky solution to a problem that seems to have been fixed now, according to the issue linked in the line above. https://github.com/LunarVim/Neovim-from-scratch/blob/1d14e44126b153943abc8559e3c2a8ccce9fe931/lua/user/indentline.lua#L47

Removing that line fixed my problem.

Munzu avatar Jan 26 '22 16:01 Munzu

Create a pr if feel it's right solution.

nishu-murmu avatar Jan 27 '22 07:01 nishu-murmu