Skip to content

Latest commit

 

History

History
47 lines (25 loc) · 1.26 KB

README.md

File metadata and controls

47 lines (25 loc) · 1.26 KB

Neovim Config

Configuration is based on the following YouTube Videos:

Files

init.lua

This section contains the definitions of files that are loaded when Neovim starts.

base.lua

This contains all basic configuration like visual options etc..

highlights.lua

This contains the syntax highlighting configuration that is used in Neovim.

maps.lua

This contains all Neovim keymappings that are used in the different keyboard modes.

plugins.lua

This contains the Lazy definition which packages should be installed.

Directories

After

The after directory is used to make small changes or configurations to already installed plugins. The following plugins are already configured:

  • ./config/nvim/after/plugin/lualine.rc.lua
  • ./config/nvim/after/plugin/solarized-osaka.rc.lua

Lua

The lua directory contains all files that are used to configure Neovim with Lua commands. The files are loaded within the init.lua file in the root directory of the Neovim configuration.

Dependencies