Home

Awesome

<p align="center"> <img src="img/logo.png" alt="neovim-lua_logo"> </p> <h3 align="center"> Neovim KISS configuration with Lua </h3>

Table of Contents

Plugins

lazy.nvim - A modern plugin manager for Neovim

feline.nvim (freddiehaddad Fork) - A minimal, stylish and customizable statusline for Neovim written in Lua

nvim-lspconfig - A collection of common configurations for Neovim's built-in language server client

nvim-cmp - Auto completion plugin

LuaSnip - Snippet Engine for Neovim written in Lua

nvim-tree.lua - A File Explorer written In Lua

indentBlankline - Adds indentation guides to all lines (including empty lines)

nvim-autopairs - A super powerful autopairs for Neovim

Tagbar - A class outline viewer for Vim

gitsigns - Super fast git decorations implemented purely in lua/teal

nvim-treesitter - Nvim Treesitter configurations and abstraction layer

alpha-nvim - A fast and highly customizable greeter for neovim.

nvim-web-devicons - A Lua fork of vim-devicons

Directory Tree

${HOME}/.config/nvim

alt text

Files and Settings

/nvim

See: nanotee/nvim-lua-guide: Where to put Lua files

/nvim/lua/core

/nvim/lua/lsp

/nvim/lua/plugins

Installation

  1. Install Neovim v0.10.x.

  2. Install Nerd Fonts, (the font of the screenshots are JetBrainsMono Nerd Font).

  3. Install Node.js - npm for download packages of LSP language servers, see: LSP Configuration.

  4. Make a backup of your current nvim folder if necessary:

mv ~/.config/nvim ~/.config/nvim.backup
  1. Download neovim-lua with git and copy the nvim folder in the ${HOME}/.config directory:
git clone https://github.com/brainfucksec/neovim-lua.git
cd neovim-lua/
cp -Rv nvim ~/.config/
  1. Install lazy.nvim for install and manage the plugins, see: lazy.nvim - Installation

  2. Run Neovim for download/sync plugins with lazy

nvim

LSP Configuration

  1. Install LSP language servers with npm, see: Languages Currently Supported
sudo npm install -g \
    bash-language-server \
    pyright \
    vscode-langservers-extracted \
    typescript typescript-language-server
  1. Install additional packages for plugins support:

C, C++:

Python:

  1. Open a source file of one of the supported languages with Neovim, and run command :LspInfo for verify the LSP support.

See: nvim-lspconfig - Quickstart

Languages Currently Supported

Lua - builtin

Bash - bashls

Python - pyright

C, C++ - clangd

HTML, CSS, JSON - vscode-langservers-extracted

JavaScript, TypeScript - ts_ls

See: nvim-lspconfig #doc/LSP configs

Appearance

Available Colorschemes

Fonts: See: Installation

Icons: nvim-web-devicons

See: Screenshots

The color scheme (default: OneDark) is defined in the following file:

--[[
Set Neovim UI color scheme.
Insert preferred color scheme in the `color_scheme` variable.
Color scheme is loaded at "Load color scheme" after settings sections, setup
must be called before loading.
--]]
local status_ok, color_scheme = pcall(require, 'onedark')

-- Load color scheme:
require('onedark').load()

-- Set status line color scheme
return M.onedark_dark

Keymaps

These are the default keymaps, in the following shortcuts, the <leader> key is set up to , (comma) character, see: keymaps.lua.

ShortcutModeDescription
kkInsertEsc with kk
<leader>cNormalClear search highlights
<F2>NormalToggle Paste mode
<leader>tk/thNormalChange split orientation (vertical/horizontal)
<Ctrl> + {h,j,k,l}NormalMove around splits windows
<leader>rNormalReload configuration file
<leader>sNormalSave file
<leader>qNormalSave (close all windows) and exit from Neovim
<Ctrl> + tNormalOpen terminal (:Term)
<Esc>TerminalExit terminal
<Ctrl> + nNormalOpen NvimTree
<leader>zNormalOpen Tagbar

Configuration Check

:checkhealth

alt text

nvim --startuptime > /tmp/nvim-start.log

nvim /tmp/nvim-start.log

See: :help startuptime

Also you can check the plugins configuration and startup time with lazy:

:checkhealth lazy
:Lazy profile

See: lazy.nvim - Usage

Screenshots

<p align="center"> <img src="img/banner.png"> </p> <details><summary> <b>(Click to expand)</b></summary>

OneDark Darker

1-onedark_darker.png

OneDark Dark

2-onedark_dark.png

OneDark Cool

3-onedark_cool.png

OneDark Deep

4-onedark_deep.png

Kanagawa Wave

5-kanagawa_wave.png

Kanagawa Dragon

6-kanagawa_dragon.png

Monokai

7-monokai.png

Rosé Pine

8-rose-pine.png

lazy.nvim

lazy-nvim.png

</details>

Guides and Resources

Other Neovim Lua Projects and Examples

Lua Resources


Disclaimer

This setup is based on KISS principle, probably some concepts may not be valid for everyone. Then feel free to take what you need but don't install anything without checking first!

This setup is not a Framework but it is the configuration I use to work on Linux, it can be used by default as it can be a start point to understand how Neovim is structured and maybe improve this config. Is the base configuration I use, and it tries to stay as simple as possible, with each addition weighted along these lines.

Less is more

Thanks to: