enable nvim colorcolumn

This commit is contained in:
LordMZTE 2023-05-23 23:54:39 +02:00
parent cae0abe877
commit 144370da52
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -3,7 +3,7 @@
(local (wo g opt) (values vim.wo vim.g vim.opt))
;; Shell
(set opt.shell "fish")
(set opt.shell :fish)
(cmd "syntax on")
@ -29,6 +29,9 @@
(set opt.cursorline true)
(set opt.cursorcolumn true)
;; Colorcolumn
(set opt.colorcolumn :100)
;; Folds
(set opt.conceallevel 2)