Golang colorscheme
I'm using the same colorscheme (catpuccin) with the exact same config as you. My go code looks pale with minimal syntax highlighting. Can you help me resolve this?
hmm Treesitter parsers are installed?
Does :checkhealth return any issues?
Does your Terminal display all colors? for x in {0..8}; do for i in {30..37}; do for a in {40..47}; do echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "; done; echo; done; done; echo ""
So I did manage to fix it by using more of your configuration. I'm stuck with Rust not having enough colors now. I have installed the LSP for Rust. How should I approach this problem for other languages?
Did you add "rust" to the enabled treesitter languages? https://github.com/Allaman/nvim/blob/main/lua/config/treesitter.lua#L2
closed due to inactivity