Home

Awesome

nvim-light

Lightweight configuration focused on providing "basic features" with little boilerplate. It includes better syntax highlight, a fuzzy finder and IDE-like features powered by Neovim's LSP client.

Requirements

Note for windows users

If you need a C compiler then zig is the easiest to install. It's available on winget, scoop and chocolatey. You can also find some links in the zig download page.

If you experience performance issues with the plugin Telescope then you might want to try an alternative like fzf.lua.

Installation

Learn how to use Neovim as a text editor

Neovim comes with an interactive tutorial that teaches the basics of the editor. The estimated time of this tutorial is around 45 minutes. It will show you how to move around text, how to execute commands and of course how to quit Neovim. You can access the tutorial by executing this command in your terminal.

nvim +Tutor

Note there is also a book inside Neovim's documentation, this is called the user manual. You can find it online here:

Learn the basics of lua and Neovim's api

This configuration was created using a scripting language called lua, I highly recommend that you learn the syntax of this language. Learn just enough to know what is valid. Here are a couple resources:

Next step is to get familiar with Neovim's lua api, so you can create your own keybindings and commands. Here are a couple of guides you can read:

About language servers

They are external programs that provide IDE-like features to Neovim. If you want to know more about language servers watch this wonderful 5 minutes video: LSP explained.

To know what language servers are supported you need to go to nvim-lspconfig's documentation, in server_configuration.md you'll find links and instruction on how to install them.

Once you have a language server available in your system you need to add its setup function to your config.

For example, if you installed the typescript language server you need to add this.

require('lspconfig').tsserver.setup({})

If you install the language server for lua, add this:

require('lspconfig').lua_ls.setup({})

[!TIP] Copy the content of .luarc.json of this github repository into your own .luarc.json. This file should be located next to your init.lua. With it the language server for lua will provide basic support for Neovim's lua api.

About syntax highlight

To get a more accurate syntax highlight for your favorite language you need to download something called a "treesitter parser". These will be downloaded automatically by the plugin nvim-treesitter.

You can also instruct Neovim to download a treesitter parser by adding a name to the property ensure_installed located in the setup function of nvim-treesitter.configs.

Learn more about the plugin manager

lazy.nvim is the plugin manager used in this configuration. Here are a few resources that will help you understand some of it's features:

Plugins directory

Your plugins will be installed in a separate directory from your configuration. The location of this directory depends on your operating system and environment variables, so you'll need to execute this command to know where that is.

nvim --headless -c 'echo stdpath("data") . "/lazy/lazy.nvim" | quit'

Keybindings

Leader key: Space.

ModeKeyAction
NormalgyCopy text to clipboard.
NormalgpPaste text from clipboard.
NormalKDisplays hover information about the symbol under the cursor.
NormalgdJump to the definition.
NormalgDJump to declaration.
NormalgiLists all the implementations for the symbol under the cursor.
NormalgoJumps to the definition of the type symbol
NormalgrLists all the references.
NormalgsDisplays a function's signature information.
Normal<F2>Renames all references to the symbol under the cursor.
Normal<F3>Format code in current buffer.
Normal<F4>Selects a code action available at the current cursor position.
Normal<Ctrl-w>dShow diagnostics in a floating window.
Normal[dMove to the previous diagnostic.
Normal]dMove to the next diagnostic.
NormalgccToggle comment in current line.
OperatorgcToggle comment in text.
OperatorsaAdd surrounding.
NormalsdDelete surrounding.
NormalsrSurround replace.
NormalsfFind surrounding.
Normal<leader>eToggle file explorer.
Normal<leader>EOpen file explorer in current folder.
Normal<leader>bcClose current buffer and preserve window layout.
Normal<leader>?Search oldfiles history.
Normal<leader><space>Search open buffers.
Normal<leader>ffFind file in current working directory.
Normal<leader>fgSearch pattern in current working directory. Interactive "grep search".
Normal<leader>fdSearch diagnostics in current file.
Normal<leader>fsSearch pattern in current file.

Autocomplete keybindings

ModeKeyAction
Insert<Ctrl-y>Confirm completion.
Insert<Enter>Confirm completion.
Insert<Ctrl-e>Cancel completion.
Insert<Ctrl-p>Move to previous item.
Insert<Ctrl-n>Move to next item.
Insert<Ctrl-u>Scroll up in documentation window.
Insert<Ctrl-d>Scroll down in documentation window.
Insert<Ctrl-b>Jump to the previous snippet placeholder.
Insert<Ctrl-f>Jump to the next snippet placeholder.
Insert<Ctrl-Space>Trigger completion.

Plugin list

NameDescription
lazy.nvimPlugin manager.
tokyonight.nvimCollection of colorscheme for Neovim.
which-key.nvimProvide clues for keymaps.
lualine.nvimPretty statusline.
mini.nvimCollection of independent lua modules that enhance Neovim's features.
plenary.nvimCollection of lua modules. It helps plugin authors solve common problems.
telescope.nvimFuzzy finder.
telescope-zf-native.nvimA faster sorting algorithm for telescope.
nvim-treesitterConfigures treesitter parsers. Provides modules to manipulate code.
nvim-lspconfigQuickstart configs for Neovim's LSP client.
nvim-cmpAutocompletion engine.
cmp-nvim-lspnvim-cmp source. Show suggestions based on LSP servers queries.
cmp-buffernvim-cmp source. Suggest words in the current buffer.