vim-lsp-cxx-highlight VS nvim

Compare vim-lsp-cxx-highlight vs nvim and see what are their differences.

nvim

My neovim configuration, as it is my weapon of choice. Setting it up for nim-lang was a priority, autocompletion and navigation. (by Rosen-Popov)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
vim-lsp-cxx-highlight nvim
7 6
335 4
- -
0.0 7.9
over 1 year ago 4 days ago
Vim Script Lua
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vim-lsp-cxx-highlight

Posts with mentions or reviews of vim-lsp-cxx-highlight. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-11.
  • Need help with C/C++ setup for proper highlighting and LSP features
    5 projects | /r/neovim | 11 Feb 2023
    This vim plugin has worked for me for semantic highlighting: https://github.com/jackguo380/vim-lsp-cxx-highlight
  • Colored statusline doesn't load at start; I need to manually source $MYVIMRC
    4 projects | /r/vim | 2 Jan 2023
    " This file contains common and basic plugins too essential not to include " See https://github.com/junegunn/vim-plug/wiki/tutorial " Auto install vim-plug (if not already installed) if empty(glob('~/.config/nvim/autoload/plug.vim')) silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim autocmd VimEnter * PlugInstall endif " Run PlugInstall if there are missing plugins autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) \| PlugInstall --sync | source $MYVIMRC \| endif " enable Vim-Plug: call plug#begin('~/.config/nvim/plugged') " Install/update plugins Plug 'https://github.com/tpope/vim-commentary.git' Plug 'https://github.com/morhetz/gruvbox' " Better C/C++ syntax highlighting; Plug 'https://github.com/jackguo380/vim-lsp-cxx-highlight' call plug#end() "---------- Basic configs ---------------------------------------------------- autocmd vimenter * ++nested colorscheme gruvbox " Enable transparent background let g:gruvbox_transparent_bg = 1
  • How to make it so my variable names are highlighted?
    3 projects | /r/vim | 12 Nov 2022
    By looking around the Web, I think you can maybe do what you want in Vim with this plugin, which requires you to setup an LSP server for C (note: I haven't tried it). Otherwise, the way Vim makes its syntax highlighting (natively) simply cannot compete with tree-sitter or LSP-based highlighting which construct the entire AST of your code, because C's syntax is too complex. There is a proposal to include an alternative syntax highlighting system, but work on it hasn't even started as far as I know, so vim-lsp-cxx-highlight and tree-sitter are really the only way to highlight identifiers in C/C++.
  • How do I use ifdef-highlighting
    4 projects | /r/vim | 1 Sep 2021
    I use coc.nvim with e.g. coc-clangd extension (with https://github.com/jackguo380/vim-lsp-cxx-highlight for extra highlighting, but that might not be necessary anymore with some recent update I think I read somewhere) which has a similar feature, but uses the compiler settings from a compile_commands.json or some configuration file to know which defines are which value, to do this kind of ifdef block highlighting.
  • Seeking for advice on a particular LSP setup
    3 projects | /r/neovim | 30 Aug 2021
    I was abled to build ccls on a RHEL 6 machine which also supports semantic highlighting with the help of this plugin. Would suggest to try that out.
  • Is it possible to get LSP-aware highlighting for C++ with neovim LSP client using ccls or clangd?
    5 projects | /r/neovim | 25 Aug 2021
  • https://np.reddit.com/r/neovim/comments/jwhf60/error_using_ccls_with_nvim/gv25dc6/
    1 project | /r/backtickbot | 19 Apr 2021

nvim

Posts with mentions or reviews of nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-25.
  • Vim keybinding with non-english keys
    2 projects | /r/neovim | 25 Dec 2022
    Yes there is and just makes it so for insert mode and search and stuff. I made this for myself with the same issue: https://github.com/rdpopov/nvim/blob/master/configs/lang.vim
  • People drop your nvim .dotfile
    80 projects | /r/neovim | 20 Nov 2022
    Aight, here you go. I have some modifications i have made for me, that might be useful. Some of the photos are outdated, statusline very much so, i use something plain and clean of weird characters. But it works for generic text editing as well. https://github.com/rdpopov/nvim. Strongly recommend tmux too
  • Trying to create a LunarVim like IDE setup, called DeathVim
    3 projects | /r/vim | 21 Jun 2022
  • Neovim distributions for writers
    7 projects | /r/neovim | 21 Apr 2022
  • Advice for a fairly newbie in NVim willing to switch from coc to native LSP
    8 projects | /r/neovim | 9 Sep 2021
    You could try this as an alternative to sneak - phaazon/hop.nvim. And im not sure what the grep plugin does but vim has grep integrated. I use it like a ripgrep though. Look into liuchengxu/vista.vim if you haven't, it kinda does like an outline and does not require an lsp( but it can use it) so its more versatile. Look into undotree if that is something that might interest you, it's useful, and maybe set up persistent undo and undodir. Since there is someone else that said about native lsp.. I'll just say its way easier to set up a language server to work correctly. Another cool plugin to use is ray-x/navigator.lua, used it mainly to look at references but it's got more uses. I find airline to slow startup time so if you are experiencing a slowdown thats a possible culprit. Here is my config, steal if you want to. neovim
  • Use Vim As A Nim Ide
    1 project | /r/nim | 8 Jan 2021
    i have somehow made it work a little bit different for the completion and still works great nvimrc

What are some alternatives?

When comparing vim-lsp-cxx-highlight and nvim you can also consider the following projects:

ale - Check syntax in Vim/Neovim asynchronously and fix files, with Language Server Protocol (LSP) support

beande - This repository contains the configuration for Neovim to make it like an IDE.

ifdef-highlighting - #ifdef highlighting in c/c++/idl

telescope.nvim - Find, Filter, Preview, Pick. All lua, all the time.

clangd-nvim - Neovim plugin for semantic highlighting in C++ based on Neovim's build-in LSP support. Mirror of https://gitlab.com/robert-oleynik/clangd-nvim/

DeathVim - A quick neovim setup.

neovim - Vim-fork focused on extensibility and usability

dotfiles - Dmitry Demenchuk does dotfiles

clangd_extensions.nvim - Clangd's off-spec features for neovim's LSP client. Use https://sr.ht/~p00f/clangd_extensions.nvim instead

dotfiles - Me confeegs.. me precious confeegs.

kok.nvim - Fast as FUCK nvim completion. SQLite, concurrent scheduler, hundreds of hours of optimization.

nvim-config - My neovim config