nvim-nix/nvim/lua/plugins/syntax.lua
2025-09-06 13:48:36 +03:00

12 lines
234 B
Lua

return {
{
"sheerun/vim-polyglot",
event = vim.g.pre_load_events,
init = function()
vim.cmd([[
syntax on
]])
vim.g.polyglot_disabled = { "ftdetect", "autoindent" }
end,
},
}