https://github.com/nm-004/nvim
My neovim config in lua
https://github.com/nm-004/nvim
nvim nvim-config nvim-lua
Last synced: about 2 months ago
JSON representation
My neovim config in lua
- Host: GitHub
- URL: https://github.com/nm-004/nvim
- Owner: NM-004
- Created: 2024-09-20T09:34:12.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-25T15:36:43.000Z (about 1 year ago)
- Last Synced: 2025-04-03T12:12:56.393Z (about 1 year ago)
- Topics: nvim, nvim-config, nvim-lua
- Language: Lua
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
- [npm](https://www.npmjs.com/)
### Config Structure
```
.
├── README.md
├── init.lua
├── lazy-lock.json
└── lua
├── config
│ ├── init.lua
│ ├── keymap.lua
│ ├── lazy.lua
│ ├── lsp.lua
│ └── options.lua
├── lsp
│ ├── blink.lua
│ ├── friendly-snippets.lua
│ ├── luasnip.lua
│ ├── mason-lspconfig.lua
│ ├── mason-tool-installer.lua
│ ├── mason.lua
│ └── nvim-lspconfig.lua
└── plugin
├── bufferline.lua
├── lualine.lua
├── nvim-autopairs.lua
├── nvim-cursorline.lua
├── nvim-tree.lua
├── nvim-treesitter.lua
├── telescope.lua
└── vim-tmux-navigator.lua
5 directories, 23 files
```