An open API service indexing awesome lists of open source software.

https://github.com/harilvfs/nvim

Neovim configuration with Kickstart. @ChrisTitusTech
https://github.com/harilvfs/nvim

config kickstart neovim

Last synced: about 1 year ago
JSON representation

Neovim configuration with Kickstart. @ChrisTitusTech

Awesome Lists containing this project

README

          

My Neovim Config (based on Kickstart)

This is basically a customized version of ChrisTitusTech's Neovim config (link), tweaked for my personal workflow and preferences.

![NVIM](https://raw.githubusercontent.com/harilvfs/nvim/refs/heads/main/preview.webp)

## Features

- **Preconfigured plugins for a better dev experience**
- **Kickstart setup for quick and easy installation**
- **Tuned for speed and a clean look**
- **Custom keymaps to boost productivity**

## Installation

**Clone this repo into your Neovim config folder:**

```bash
git clone https://github.com/harilvfs/nvim ~/.config/nvim
```

## Usage

**1. Open Neovim**

```bash
nvim
```

**2. Install plugins with Lazy.nvim**
```bash
:Lazy sync
```

## Customization

**Feel free to tweak anything you like! Most of the settings and plugins live inside the `lua/` folder and `init.lua`.**

Here's a quick look at the folder structure:

```shell
neovim
├── doc/
│ ├── kickstart.txt
│ └── tags
├── lua/
│ ├── custom/
│ │ └── plugins/
│ │ ├── themes/
│ │ │ ├── nord.lua
│ │ │ └── onedark.lua
│ │ ├── init.lua
│ │ └── neo-tree.lua
│ ├── kickstart/
│ │ └── plugins/
│ │ ├── autoformat.lua
│ │ └── debug.lua
│ └── keymaps.lua
├── init.lua
├── lazy-lock.json
├── LICENSE
├── preview.webp
└── README.md
```