From ff621ae0a2171984a0ebd8c31024e6019cb33d00 Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Sat, 25 May 2024 03:50:35 +0530 Subject: [PATCH] Fix bug introduced due to change of vim syntax option type from boolean to string --- lua/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/options.lua b/lua/options.lua index 6f78f0f..d012c10 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -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"