โญ If you find this config helpful, please star the repository! It motivates me to keep improving and adding new features.
A modern, feature-rich Neovim configuration built with Lua and managed by lazy.nvim. Organized, fast, and beautiful - just the way it should be.
๐ธ Screenshots
Dashboard
Coding Interface
File Explorer
Command Palette
โจ Features
- ๐จ Beautiful UI - Catppuccin theme with optional transparency
- ๐ฏ Centered Command Palette - Noice.nvim for beautiful cmdline with icons
- ๐ฆ Smart Plugin Management - lazy.nvim with organized structure
- ๐ Fuzzy Finding - Snacks picker for files, grep, buffers
- ๐ณ File Explorer - Snacks explorer (nvim-tree and oil.nvim also available)
- ๐ก Full LSP Support - Auto-completion, diagnostics, and formatting
- ๐ฏ GitHub Copilot - AI-powered code completion
- ๐ Git Integration - LazyGit integration with diff support
- ๐ Smart Statusline - Shows git status, diagnostics, and "I use Arch btw"
- ๐งช Testing - vim-test integration
- ๐ Markdown & API Preview - Live preview for markdown and Swagger/OpenAPI
- ๐ณ Docker Management - LazyDocker integration
- ๐ญ Discord Presence - Show what you're coding with cord.nvim
- ๐ต Now Playing - Dashboard shows current song via playerctl
- ๐จ Code Folding - nvim-ufo for smart folding
- โก Fast Startup - Optimized lazy loading (~80ms with 26+ plugins)
๐ Requirements
- Neovim >= 0.9.0
- Git
- A Nerd Font (recommended: JetBrainsMono Nerd Font)
- Node.js (for LSP servers and Copilot)
- Ripgrep (for grep functionality)
- LazyGit (optional, for git integration)
- LazyDocker (optional, for docker management)
- tmux (for splitting tabs)
๐ Installation
Linux/macOS
# Backup your existing config (if any)
mv ~/.config/nvim ~/.config/nvim.backup
# Clone this repository
git clone https://github.com/MannuVilasara/nvim.git ~/.config/nvim
# Start Neovim
nvim
Lazy.nvim will automatically install all plugins on first launch.
๐ฆ Plugins
Plugins are organized into categories for better maintainability. See STRUCTURE.md for the complete organization guide.
Core
- lazy.nvim - Modern plugin manager
- plenary.nvim - Lua utility functions
UI & Appearance (lua/plugins/ui/)
- catppuccin - Beautiful color scheme with transparency support
- lualine.nvim - Customizable statusline with git, diagnostics, and OS info
- bufferline.nvim - Buffer/tab line with navigation shortcuts
- noice.nvim - Enhanced cmdline with centered popup and icons
- nvim-web-devicons - File icons everywhere
- nvim-colorizer.lua - Live color preview
- dressing.nvim - Better UI for input/select
- fidget.nvim - LSP progress notifications
- snacks.nvim - Dashboard with now playing and utilities
Editor (lua/plugins/editor/)
- nvim-treesitter - Better syntax highlighting and code understanding
- nvim-autopairs - Auto-close brackets and quotes
- comment.nvim - Smart commenting (gcc, gbc)
- which-key.nvim - Keybinding hints popup
- nvim-ufo - Smart code folding with treesitter
- nvim-tree.lua - File explorer sidebar
- oil.nvim - Edit filesystem like a buffer
LSP & Completion (lua/plugins/lsp/)
- nvim-lspconfig - Easy LSP server configurations
- nvim-cmp - Powerful completion engine
- cmp-nvim-lsp - LSP completion source
- cmp-buffer - Buffer word completion
- cmp-path - File path completion
- LuaSnip - Snippet engine
- cmp_luasnip - Snippet completion source
- none-ls.nvim - Formatting and linting
- conform.nvim - Fast code formatter
Tools (lua/plugins/tools/)
- copilot.lua - GitHub Copilot integration
- toggleterm.nvim - Terminal management
- lazydocker.nvim - Docker TUI integration
- vim-test - Test runner
- cord.nvim - Discord Rich Presence
- nvim-tmux-navigation - Seamless tmux/vim navigation
- rails.nvim - Ruby on Rails utilities
- markdown-preview.nvim - Live markdown preview
- swagger-preview.nvim - Swagger/OpenAPI preview
โจ๏ธ Key Bindings
General
-
<leader>is set toSpace
Dashboard (Snacks)
-
f- Find File -
n- New File -
g- Find Text (Grep) -
r- Recent Files -
c- Open Config -
L- Lazy Plugin Manager -
q- Quit
Fuzzy Finding
-
<C-p>- Find Files -
<leader><leader>- Recent Files -
<leader>fb- Buffers -
<leader>fg- Grep Files -
<leader>p- Command Palette -
<leader>fh- Help Pages -
<leader>fc- Colorschemes -
<leader>fk- Keymaps
File Explorer
-
<leader>ee- Toggle Explorer
Buffer Navigation
-
Tab- Next Buffer -
Shift+Tab- Previous Buffer -
<leader>bd- Delete Buffer -
<leader>bb- Pick Buffer -
<leader>b1-9- Go to Buffer 1-9
Git
-
<leader>lg- LazyGit -
<leader>gl- LazyGit Log (current file)
Scratch Buffer
-
<leader>sf- Toggle Scratch Buffer -
<leader>S- Select Scratch Buffer
Code Folding (UFO)
-
zR- Open all folds -
zM- Close all folds -
za- Toggle fold under cursor -
zj- Go to next fold -
zk- Go to previous fold
Fidget Notifications (Demo)
-
<leader>na- Info notification -
<leader>nb- Warning notification -
<leader>nc- Notification with annotation -
<leader>np- Progress spinner demo
๐จ Customization
Transparency Toggle
Edit lua/plugins/ui/catppuccin.lua and change:
local transparent = true -- Set to false to disable transparency
Changing Theme Variant
In lua/plugins/ui/catppuccin.lua, change the colorscheme command:
vim.cmd.colorscheme("catppuccin-mocha") -- mocha, macchiato, frappe, or latte
Adding Plugins
Add new plugin files in the appropriate category:
- UI plugins โ
lua/plugins/ui/ - Editor plugins โ
lua/plugins/editor/ - LSP plugins โ
lua/plugins/lsp/ - Tools โ
lua/plugins/tools/
They will be automatically loaded by lazy.nvim.
Modifying Keybindings
- Core options:
lua/core/options.lua(orlua/vim-options.luaif not migrated) - Plugin-specific: Edit the individual plugin file
๐ Project Structure
~/.config/nvim/
โโโ init.lua # Entry point with lazy.nvim setup
โโโ lazy-lock.json # Plugin version lock file
โโโ STRUCTURE.md # Organization guide
โโโ reorganize.sh # Migration script
โโโ README.md # This file
โ
โโโ lua/
โ โโโ core/ # Core configuration (optional, organized structure)
โ โ โโโ options.lua # Vim options and settings
โ โ
โ โโโ vim-options.lua # Vim options (legacy, can be migrated to core/)
โ โโโ plugins.lua # Lazy.nvim bootstrap
โ โ
โ โโโ plugins/ # Plugin configurations (organized by category)
โ โโโ ui/ # UI & Appearance
โ โ โโโ catppuccin.lua
โ โ โโโ lualine.lua
โ โ โโโ bufferline.lua
โ โ โโโ noice.lua
โ โ โโโ snacks.lua
โ โ โโโ dressing.lua
โ โ โโโ fidget.lua
โ โ โโโ nvim-colorizer.lua
โ โ
โ โโโ editor/ # Editor enhancements
โ โ โโโ treesitter.lua
โ โ โโโ autopairs.lua
โ โ โโโ comment.lua
โ โ โโโ which-key.lua
โ โ โโโ ufo.lua
โ โ โโโ nvim-tree.lua
โ โ โโโ oil.lua
โ โ
โ โโโ lsp/ # LSP & Completion
โ โ โโโ lsp-config.lua
โ โ โโโ completions.lua
โ โ โโโ none-ls.lua
โ โ โโโ formatting.lua
โ โ
โ โโโ git/ # Git tools (future)
โ โ
โ โโโ tools/ # Development tools
โ โโโ copilot.lua
โ โโโ toggleterm.lua
โ โโโ lazydocker.lua
โ โโโ vim-test.lua
โ โโโ cord.lua
โ โโโ ...
๐ง Troubleshooting
Plugins not installing
# Inside Neovim
:Lazy sync
LSP not working
# Inside Neovim
:LspInfo
:Mason
Treesitter errors
# Inside Neovim
:TSUpdate
๐ก Tips
-
Health Check - Use
:checkhealthto diagnose issues -
Plugin Manager - Run
:Lazyto manage plugins -
LSP Servers - Use
:Masonto install LSP servers, formatters, and linters -
Keybinding Help - Press
<leader>and wait to see available keybindings (which-key) -
Transparency - Toggle in
lua/plugins/ui/catppuccin.luawith one line - Now Playing - Dashboard shows your current song via playerctl (Spotify, VLC, etc.)
-
Command Palette - Press
:for centered command palette with icons -
Code Folding - Use
zato toggle folds,zR/zMto open/close all
๐ Acknowledgments
Thanks to the Neovim community and all plugin authors for their amazing work!
Special thanks to:
- folke - For lazy.nvim, noice.nvim, and snacks.nvim
- catppuccin - For the beautiful theme
- The entire Neovim community for making this possible
โญ Support
If this configuration helped you or inspired your setup, please consider:
- โญ Starring the repository - It really motivates me!
- ๐ด Forking and customizing - Make it your own
- ๐ Reporting issues - Help improve it for everyone
- ๐ฌ Sharing feedback - Let me know what you think
Star the repo if you found it helpful! It means a lot to me! โญ
Note: I use Arch btw ๐ง
Top comments (0)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.