Fix bug introduced due to change of vim syntax option type from boolean

to string
This commit is contained in:
Arkaprabha Chakraborty 2024-05-25 03:50:35 +05:30
parent ceea7f387b
commit ff621ae0a2
No known key found for this signature in database
GPG key ID: 3A4E2B952EE60E17

View file

@ -3,6 +3,6 @@ vim.o.shiftwidth = 4
vim.o.expandtab = true
vim.o.relativenumber = true
vim.o.smartindent = true
vim.o.syntax = true
vim.o.syntax = "true"
vim.o.cursorline = true
vim.o.signcolumn = "auto"