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

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"