disable additional hl
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 7m38s
Build neovim image / build-neovim-arm64 (push) Successful in 16m23s
Build neovim image / update-images-manifest (push) Successful in 15s

This commit is contained in:
Maciej Lebiest 2024-08-20 11:29:14 +02:00 committed by Maciej Lebiest
parent 2986951b8b
commit d593845959
2 changed files with 4 additions and 4 deletions

View file

@ -27,9 +27,9 @@ return {
--} --}
vim.api.nvim_create_autocmd({ "BufWritePost" }, { vim.api.nvim_create_autocmd({ "BufWritePost" }, {
callback = function() callback = function()
require("lint").try_lint() require("lint").try_lint()
end, end,
}) })
vim.api.nvim_create_autocmd({ "BufEnter" }, { vim.api.nvim_create_autocmd({ "BufEnter" }, {

View file

@ -48,7 +48,7 @@ return function()
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Using this option may slow down your editor, and you may see some duplicate highlights. -- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages -- Instead of true it can also be a list of languages
additional_vim_regex_highlighting = true, -- default=false additional_vim_regex_highlighting = false, -- default=false
}, },
} }
end end