Skip to content

Instantly share code, notes, and snippets.

@HallexCosta
Created March 15, 2025 17:21
Show Gist options
  • Save HallexCosta/6ae1b4ad4890d59031b3a515a3558a93 to your computer and use it in GitHub Desktop.
Save HallexCosta/6ae1b4ad4890d59031b3a515a3558a93 to your computer and use it in GitHub Desktop.
Fix synstax highlight is disable in Astrovim

Syntax Highlight Disable in Astrovim?

Try run this steps to work

  1. open nvim
  2. Check if gitsigns is installed :checkhealth gitsigns
  3. If it shows errors, reinstall or enable :Lazy sync
  4. Ensure Treesitter Highlighting is Working :checkhealth nvim-treesitter
  5. If Treesitter is missing for Git highlighting, install the required parsers :TSInstall gitcommit diff
  6. Reload Treesitter :TSUpdate
  7. check if file git.lua exists
  8. If don´t exists it in ~/.config/nvim/lua/plugins/git.lua

Adjust for your directory

  1. Now, try execute the Git integration syntax highlighting again with git commit -v
return {
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "‾" },
changedelete = { text = "~" },
},
highlight = true, -- Enable highlighting
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment