Mofiqul / vscode.nvim

Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code
MIT License
712 stars 114 forks source link

Syntax Color C++ #84

Closed Anderson0xFF closed 2 years ago

Anderson0xFF commented 2 years ago

Colors do not match the same as Vscode in C++.

NVIM: image

VSCODE: image

TeamTamoad commented 2 years ago

Please check this one out https://github.com/nvim-treesitter/nvim-treesitter It's a plugin that give you a better syntax highlighting.

CyberMango commented 2 years ago

Can confirm the colors look like in the "VSCODE" picture when using treesitter. Make sure to run its setup in your config or else its not enabled. a minimal example:

require("nvim-treesitter.configs").setup({
    auto_install = true,
    highlight = {
        enable = true
    }
})