Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spacevim | 19,711 | a day ago | 1 | July 02, 2022 | 26 | gpl-3.0 | Lua | |||
A community-driven modular vim/neovim distribution - The ultimate vimrc | ||||||||||
Nvchad | 15,492 | 16 hours ago | 2 | August 19, 2021 | 1 | gpl-3.0 | Lua | |||
An attempt to make neovim cli functional like an IDE while being very beautiful, blazing fast startuptime | ||||||||||
Lunarvim | 13,704 | a day ago | 76 | gpl-3.0 | Lua | |||||
🌙 LunarVim is an IDE layer for Neovim. Completely free and community driven. | ||||||||||
Oni | 11,477 | 1 | 3 years ago | 6 | April 02, 2017 | 518 | mit | TypeScript | ||
Oni: Modern Modal Editing - powered by Neovim | ||||||||||
Astronvim | 8,246 | 21 hours ago | 4 | gpl-3.0 | Lua | |||||
AstroNvim is an aesthetic and feature-rich neovim config that is extensible and easy to use with a great set of plugins | ||||||||||
Haskell Ide Engine | 2,435 | 2 years ago | 302 | other | Haskell | |||||
The engine for haskell ide-integration. Not an IDE | ||||||||||
Goneovim | 2,031 | 2 days ago | 51 | June 21, 2022 | 93 | mit | Go | |||
A GUI frontend for neovim. | ||||||||||
Vim Config | 1,672 | 20 days ago | 35 | Vim Script | ||||||
Lean mean Neovim machine, carefully crafted with :heart: Use with latest Neovim. | ||||||||||
Solidoak | 894 | 6 years ago | 17 | unlicense | Rust | |||||
An IDE for Rust | ||||||||||
Codeium.vim | 872 | 6 days ago | 6 | mit | Vim Script | |||||
Free, ultrafast Copilot alternative for Vim and Neovim |
Sane, simple, and effective config dedicated to replicating the out-of-box experience of vscode in Neovim.
There are many, many good Vim configs out there...many in which are better than this one. BUT I feel that the biggest barrier of entry for users switching from more traditional editors is the configuration. Who wants to spend hours and hours working on a config when VS code just fires up and is ready to go? Well...me...but not everyone is like me! This config is made to be a install-and-code config. Just clone the repo, run the installer, and you're ready to code!
The config was made to be a simple as possible. I think any setting you could need to change would be found right where you expect it to be.
Neocode with it's new Catppuccin look running in Neovide using the multigrid flag for
fancy animations
Installer works for:
This project is actually growing! I'm stoked!! Lets chat about it and discuss it's future: https://discord.gg/9tZq3WrU4p
Simply use the --deps
flag on the installer and it will automaticallt get all your dependencies for you! Still, if you prefer to do that sort of thing yourself, check below:
Make sure to enable developer mode on Windows so the script can create the Symlink between the Config and your neovim folder.
Scoop package manager:
iwr -useb get.scoop.sh | iex
Ripgrep for Live-grepping (find in project)
scoop install ripgrep
FZF for file searching
scoop install fzf
Lazygit for working with git in the terminal
scoop bucket add extras
scoop install lazygit
Neovim Nightly:
scoop bucket add versions
scoop install neovim-nightly
Simply use the --deps flag on the installer and it will automaticallt get all your dependencies for you! Still, if you prefer to do that sort of thing yourself, check below:
Make sure to enable developer mode.
Homebrew package manager:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Ripgrep for Live-grepping (find in project)
brew install ripgrep
FZF for file searching
brew install fzf
Lazygit for working with git in the terminal
brew install lazygit
Neovim Nightly: Instructions coming soon!
Neovide (reccomended): neovide/neovide
clone this repo somewhere easy to access on your pc. For example, I use ~\Code.
cd into the Neovide install directory, and simply run ./NeoCodeInstaller<yoursystem> --deps --install-packer
you can also pass the --create-user
flag to have the script generate a user folder for you
If running Windows (other systems to come VERY soon) then also add the --deps
flag to have the installer grab scoop package manager and download everything you need for this config.
The install will be automatic and headlessly install all the needed plugins.
I just released the binaries today for Windows and Linux, please let me know if there are any issues with them!
How do I get language support for a certian language?
type :LspInstall
while the file is open and it should find a language server for you.
How do I get syntax support for a language?
type TSInstall
and press <tab>
and you will get an autocomplete window of available parsers.
The setup is now capable of using custom code without it getting overridden when syncing newest
changes. The user's custom config folder should be located under the lua folder, called
user
. Inside the user folder there should be an init.lua file, as well as
customplugins.lua, keybinds.lua and settings.lua files. The contents of the file should be as follows:
customplugins.lua:
-- put your custom lua plugins in this lua table to be loaded last by packer
return {
"rebelot/kanagawa.nvim",
"windwp/windline.nvim"
}
customplugins is just a list of packer repos that you want to be sourced after the plugin defaults.
init.lua
-- use pcalls in this file to require custom config files,
-- that way if anyone syncs the repo and doesn't have that file they won't get errors
local plugin_okay, plugin = pcall(require, "user.<customFileName>")
if not custom_okay then
return
end
Inside init.lua, you'll call any custom LUA files that you've written. For example, if you wanted a custom theme, just make a copy of visual.lua, place it in user folder, and require it inside of init.lua. At the end of the plugin loading of the main init.lua, it will call all of your custom configs. These files are not tracked by git and therefor will persist even when you grab the newest updates from the github repo!
This project is literally brand new, and I am working on it alone. Some things may not work, and I may not have all the dependecies listed as they should be...if something is missing, please let me know.
leader key refers to the comma ( , ) key on your keyboard!
crtl+k
crtl-p
.crtl+b
to open the Filetree as a sidebar.<leader><leader>c
to comment a line or multiple lines. The leader key is the , key on your keyboard. So the key chord would be ,,c
.ctrl+o
to view the symbols sidebar. This lets you browse code by the functions, essentially.<leader><leader>g
the G is for "live-Grep". Grep is a term that vimmers use to say searching, basically.<
and >
keys to indent and un-indent text.<leader><leader>b
to search and quickly open an already open buffer.<leader><leader>f
to auto-format a document using the language server.[d
or ]d
.Most lsp command (command pertaining to the language server) are prefixed with the space key instead of the leader key for memoralibilitys sake
F2
or space-rn
space-f
space-ca
space-d
space-D
ctrl-i
<leader><leader>h
ctrl + ~
(the tilde key without shift) will give you a floating terminal that you can run commands ingt
and gy
OR shift+h
and shift+l
shift+j
and shift+k
ctrl+w then h,j,k, or l
qb
qq
This configuration now supports being ran inside VS Code itself via the "Neovim VS Code Plugin".
When using the configuation inside VS Code it just uses keybinds, legendary, and settings.lua. Still makes for a pretty seamless experience when compared with VS Code native features IMO. More VS Code keybinds to come soon!
Due to limitations of running Neovim inside VS Code, we can't have fuzzy finders and whatnot render, so you'll need to use the VS Code counterparts (such a ctrl+p and strl+shift+p)
I'm working on ditching the CLI installer I've built currently in favor of a Tauri-powered web GUI to install Neocode & it's deps as easy as possible. More info and preview to come shortly!