Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nm-004/nvim

My neovim config in lua
https://github.com/nm-004/nvim

nvim nvim-config nvim-lua

Last synced: 17 days ago
JSON representation

My neovim config in lua

Awesome Lists containing this project

README

        

# My neovim config.

## Requirements:-

- [Neovim](https://neovim.io) >= 0.10.0
- [Git](https://git-scm.com)
- [NerdFont](https://www.nerdfonts.com/)
- [Lazygit](https://github.com/jesseduffield/lazygit) (Optional)
- C Compiler
- [Rust](https://www.rust-lang.org/tools/install)
- [riggrep](https://github.com/BurntSushi/ripgrep) for telescope

### Config Structure

```
.
├── .gitignore
├── README.md
├── init.lua
├── lazy-lock.json
└── lua
├── config
│   ├── init.lua
│   ├── keymaps.lua
│   ├── lazy.lua
│   └── options.lua
└── plugins
├── auto-save.lua
├── barbar.lua
├── catppuccin.lua
├── codesnap.lua
├── conform.lua
├── dashboard.lua
├── gitsigns.lua
├── glow.lua
├── indent-blankline.lua
├── lazygit.lua
├── leetcode.lua
├── live-command.lua
├── lspconfig.lua
├── lualine.lua
├── mason.lua
├── mpv.lua
├── neoscroll.lua
├── noice.lua
├── nui.lua
├── nvim-autopairs.lua
├── nvim-cmp.lua
├── nvim-tree.lua
├── nvim-treesitter.lua
├── pantran.lua
├── pomodoro.lua
├── telescope.lua
├── toggleterm.lua
├── vim-tmux-navigator.lua
├── which-key.lua
└── wilder.lua

4 directories, 38 files

```