LanguageClient-neovim VS kickstart.nvim

Compare LanguageClient-neovim vs kickstart.nvim and see what are their differences.

kickstart.nvim

A launch point for your personal nvim configuration (by nvim-lua)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
LanguageClient-neovim kickstart.nvim
11 284
3,538 14,291
- 20.6%
0.0 9.0
6 months ago 8 days ago
Rust Lua
MIT License 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.

LanguageClient-neovim

Posts with mentions or reviews of LanguageClient-neovim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-09.
  • Where to start with LSP in Vim?
    13 projects | /r/vim | 9 Jun 2022
  • Simple plugin to display tag under cursor in popup (Vim 8.2+)
    1 project | /r/vim | 9 Feb 2022
    i know the language client neovim has such a function (:help languageclient_textdocument_codelens after compiling its helptags). AFAIK you can get that running in Vim 8, but not sure.
  • F# for Linux People
    3 projects | dev.to | 17 Jan 2022
    On NeoVim, the built-in LSP client works without modification. On Vim, you will need LanguageClient-neovim.
  • Just wanted to share my enthusiasm when I realised error checking (clangd) could be so fast! :) It's almost instant...
    3 projects | /r/neovim | 20 Oct 2021
    I'm using LanguageClient-neovim. Here's the relevant portions of my init.vim:
  • Using Vim for Everything!
    6 projects | /r/FPGA | 6 Oct 2021
    I just saw a nice post in /u/medwatt about using vim for VHDL/Verilog and thought I'd contribute a little! * Syntax and error highlight: https://github.com/autozimu/LanguageClient-neovim * Column align: https://github.com/junegunn/vim-easy-align * Remove annoying whitespaces: https://github.com/ntpeters/vim-better-whitespace * Partial (fuzzy) filename search: https://github.com/junegunn/fzf.vim * Outline all declarations inside a file: ⠀https://github.com/preservim/tagbar * Treat indentations as vim-objects (useful for languages that don't use { }): https://github.com/michaeljsmith/vim-indent-object There is also mouse support in vim for those who want it. Try typing :set mouse=a. Very useful for resizing windows. I also highly recommend you get good at using folds (https://vim.fandom.com/wiki/Folding). It makes it a LOT easier to navigate files. You can save your fold config per-file with :mkview and load it later with :loadview. If I come up with more hints - I'll mention them in the comments!
  • Neovim's built-in LSP with Ruby and Rails
    1 project | /r/ruby | 7 Jul 2021
    I've been using LanguageClient and solargraph gem with plain Vim 8 for a long time already. Still, having a bit better experience at Ruby coding with Emacs and its lsp-mode & company & inf-ruby combo.
  • ALE vs YouCompleteMe vs CoC-rust vs LanguageClient-neovim
    9 projects | /r/rust | 4 Apr 2021
    Might migrate to Neovim's native LSP support at some point, however I find vim-lsp more feature complete out of the box. I used to use LanguageClient-neovim, however, I missed proper support for signature help.
  • Is there a difference between a LSP, code completer, and a linter?
    4 projects | /r/vim | 26 Feb 2021
    YCM is a client. The client is a plugin for Vim or Neovim, even the "built-in" client in Neovim is just a Lua plugin that is included with the editor, it's not really built-in. Examples of other clients:LanguageClient-neovim, vim-lsp, ale.
  • Is rust-analyzer for neovim ever going to support semantic syntax highlighting?
    8 projects | /r/rust | 25 Feb 2021
    LanguageClient-neovim just merged some support for semantic tokens and the plan, as I read the PR/issues, is to next implement some default mappings from the semantic tokens to highlight groups.
  • Which lsp client is best ?
    2 projects | /r/neovim | 30 Dec 2020
    The best LSP client is the one that works for you. When it comes to neovim, there is a generous variety of LSP clients to choose from. The notables ones being vim-lsc and vim-lsp written in vimscript, LanguageClient-neovim written in rust, YouCompleteMe is written in python and in my experience is the hardest to install, coc.nvim written in typescript and, of course, the neovim's built-in one. I would recommend going with coc.nvim, as it is the best LSP client right now, though it provides much more features than a standard lsp client does and for some people it is a disadvantage and for the others it's not. Also you have to install node.js on your system for coc.nvim to work. I myself use neovim built-in one for a few reasons: it's not in stable yet, but when the neovim 0.5 version comes out, it is gonna be the standard client. Another reason is it's extremely lightweight and customizable. There were already several discussions on the subreddit about the clients you can check out.

kickstart.nvim

Posts with mentions or reviews of kickstart.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-05.
  • Using a venv with Neovim's Python LSP
    2 projects | dev.to | 5 Apr 2024
    I recently started coding with Neovim using kickstart.nvim as the template for my editor configuration. I downloaded the python-lsp-server package using Mason, but I was disappointed to discover that the IntelliSense on my third party dependencies didn't work. The LSP was resolving to my global Python installation, which did not have the packages from my virtual environment (venv) installed.
  • I Learned Neovim In A Weekend
    1 project | dev.to | 11 Mar 2024
    First thing I did was get kickstart.nvim. I had heard it was extremely useful (and it was). It was very easy to install. I start reading through init.lua, and it told me to run :Tutor, which is almost 1,000 lines of learning how to use Neovim, to which I obviously ran that command and started reading. Obviously, it takes a bit of time to complete :Tutor, but it's well worth it. "hjkl" wasn't too hard to get used to, also repeating motions by using numbers was useful, such as using '5dd' to delete 5 lines. I highly suggest reading this file, especially since I didn't really know about the different modes, which is probably why I failed to switch the other times. You would start writing your code, then Neovim would say that it can't find that command, you would accidently type an i and then start typing, and so on, it was a nightmare. For those that don't know the modes, here is each mode and how to get between them.
  • Kickstart.nvim: Single file launch point for a personal nvim config
    1 project | news.ycombinator.com | 7 Mar 2024
  • Neovide – a simple, no-nonsense, cross-platform GUI for Neovim
    17 projects | news.ycombinator.com | 31 Jan 2024
    I also suggest against using distributions. Instead of learning how to configure nvim itself you're learning to configure that specific distro.

    I suggest to take someone's lua config and start from there. Kickstart.nvim is a good one: https://github.com/nvim-lua/kickstart.nvim

  • It’s been an hour and I have made no progress
    2 projects | /r/neovim | 9 Dec 2023
  • Do I need NeoVIM?
    11 projects | /r/neovim | 7 Dec 2023
    1) the option I wouldn’t chose, use Kickstarter. It’s a minimal starter config, using a single init.lua that helps you build a config slowly. https://github.com/nvim-lua/kickstart.nvim
  • ready to use neovim for web development (frontend) - beginners
    4 projects | /r/neovim | 5 Dec 2023
    I highly recommend Lazyvim for if you want to have a VSCode (ish) like experience that still exposes you to configuring in Lua. Or Kickstart.nvim if you want a more "from scratch" experience
  • Search commands slow in neovim but fast in vim
    2 projects | /r/neovim | 2 Dec 2023
    In case it is helpful, I am using kickstart.nvim with only minor modifications.
  • Kickstart.emacs Starter kit for Gnu Emacs
    2 projects | /r/emacs | 13 Nov 2023
    One of the project goals is to become something like kickstart.nvim. Or, to be a reference if someone doesn't know how to do something.
  • I want to remove this "./" path on the nvim explorer
    1 project | /r/neovim | 12 Nov 2023
    Hey guys! I don't use the "./" path at all since I see it useless, I would love to remove it to be kind with my own soul, I'd love some help with this. My nvim setup is kickstart.nvim with Lua of course.

What are some alternatives?

When comparing LanguageClient-neovim and kickstart.nvim you can also consider the following projects:

nvim-lspconfig - Quickstart configs for Nvim LSP

nvim-lua-guide - A guide to using Lua in Neovim

vim-easy-align - :sunflower: A Vim alignment plugin

NvChad - Blazing fast Neovim config providing solid defaults and a beautiful UI, enhancing your neovim experience.

vim-lsp - async language server protocol plugin for vim and neovim

LazyVim - Neovim config for the lazy

clangd - clangd language server

lazy.nvim - 💤 A modern plugin manager for Neovim

tagbar - Vim plugin that displays tags in a window, ordered by scope

KotlinLanguageServer - Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol

tree-sitter-rust - Rust grammar for tree-sitter

Neovim-from-scratch - 📚 A Neovim config designed from scratch to be understandable