creativenull / nvim-config

My neovim config in lua that I use to experiment new features and plugins

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

My neovim config in lua

This is my neovim config in lua, I use this to test out different lua plugins or test out new neovim features.

Screenshots

image

image

image

Requirements

Architecture

├── init.lua               (Starting point)
├── after
│   └── ftplugin           (Plugins to be loaded on the 'FileType' event)
└── lua
    └── cnull
        ├── core           (Initial setup and utilities called from here)
        ├── lsp            (Everything LSP related, setup for the built-in LSP)
        ├── plugins        (Plugins organized by features instead of plugin names)
        └── user           (My custom user configuration independent of plugins)

Installation/Setup

In a Linux/MacOS machine:

git clone https://github.com/creativenull/nvim-config $HOME/.config/nvim

In Windows (powershell):

git clone https://github.com/creativenull/nvim-config $HOME/AppData/Local/nvim

About

My neovim config in lua that I use to experiment new features and plugins


Languages

Language:Lua 100.0%