Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nm-004/nvim
- Owner: NM-004
- Created: 2024-09-20T09:34:12.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2024-10-27T16:47:02.000Z (18 days ago)
- Last Synced: 2024-10-27T19:46:28.216Z (18 days ago)
- Topics: nvim, nvim-config, nvim-lua
- Language: Lua
- Homepage:
- Size: 61.5 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### 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.lua4 directories, 38 files
```