A customized Neovim configuration based on kickstart.nvim that is:
- Well-documented
- Modular plugin structure
- AI-enhanced development environment
- Comprehensive language support
This configuration extends kickstart.nvim with custom plugins and configurations for modern development workflows.
Kickstart.nvim targets only the latest 'stable' and latest 'nightly' of Neovim. If you are experiencing issues, please make sure you have the latest versions.
External Requirements:
- Basic utils:
git,make,unzip, C Compiler (gcc) - ripgrep
- Clipboard tool (xclip/xsel/win32yank or other depending on platform)
- A Nerd Font: optional, provides various icons
- if you have it set
vim.g.have_nerd_fontininit.luato true
- if you have it set
- Language Setup:
- If you want to write Typescript, you need
npm - If you want to write Golang, you will need
go - etc.
- If you want to write Typescript, you need
Quick Install on macOS (using Homebrew):
# Install Neovim and basic dependencies
brew install neovim git make ripgrep gcc node go
# Install a Nerd Font (optional but recommended)
brew install --cask font-jetbrains-mono-nerd-font
# Note: pbcopy/pbpaste are built into macOS for clipboard functionalityNOTE See Install Recipes for additional Windows and Linux specific notes and quick install snippets
NOTE Backup your previous configuration (if any exists)
Neovim's configurations are located under the following paths, depending on your OS:
| OS | PATH |
|---|---|
| Linux, MacOS | $XDG_CONFIG_HOME/nvim, ~/.config/nvim |
| Windows (cmd) | %localappdata%\nvim\ |
| Windows (powershell) | $env:LOCALAPPDATA\nvim\ |
Fork this repo so that you have your own copy that you can modify, then install by cloning the fork to your machine using one of the commands below, depending on your OS.
NOTE If following the recommended step above (i.e., forking the repo), replace
glennmca-devwith<your_github_username>in the commands below
Linux and Mac
git clone https://github.com/glennmca-dev/glenn.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvimStart Neovim
nvimThat's it! Lazy will install all the plugins you have. Use :Lazy to view
current plugin status. Hit q to close the window.
Read through the init.lua file in your configuration folder for more
information about extending and exploring Neovim. That also includes
examples of adding popularly requested plugins.
This configuration includes 35+ carefully selected plugins organized into categories:
🚀 Core Features:
- AI-Powered Development: Avante.nvim with Claude Sonnet 4 integration via Copilot
- Advanced LSP: Mason-managed LSP servers for 10+ languages
- Modern UI: Catppuccin theme, bufferline, floating windows, and enhanced notifications
- Smart Search: Telescope with fuzzy finding and live grep capabilities
- File Management: Dual file explorers (nvim-tree and neo-tree)
Configured LSP servers for comprehensive language support:
- Go (
gopls) - Full Go development support - Python (
pyright) - Python type checking and intellisense - JavaScript/TypeScript (
ts_ls) - Modern JS/TS development - Java (
jdtls) - Enterprise Java with Lombok support - Angular (
angularls) - Angular framework support - Bash (
bashls) - Shell scripting - Docker (
dockerls,docker_compose_language_service) - Container development - Infrastructure as Code (
terraformls) - Terraform support - Groovy (
groovyls) - Jenkins/Gradle support - Configuration Files (
jsonls,yamlls) - JSON/YAML editing - Documentation (
marksman) - Markdown editing - Lua (
lua_ls) - Neovim configuration development
🧠 AI & Development:
yetone/avante.nvim- AI coding assistant with Claude integrationnvim-java/nvim-java- Advanced Java development environment
🔍 Navigation & Search:
nvim-telescope/telescope.nvim- Fuzzy finder for files, text, and morenvim-tree/nvim-tree.lua- File explorer with git integrationfolke/which-key.nvim- Interactive keybinding help
⚡ LSP & Completion:
neovim/nvim-lspconfig- LSP client configurationshrsh7th/nvim-cmp- Autocompletion frameworkwilliamboman/mason.nvim- LSP server, formatter, and linter manager
🎨 UI & Appearance:
catppuccin/nvim- Modern color schemeakinsho/bufferline.nvim- Enhanced buffer tabsfolke/snacks.nvim- Notification system and utilitiesechasnovski/mini.nvim- Collection of useful micro-plugins
⚙️ Development Tools:
lewis6991/gitsigns.nvim- Git integration and change trackingstevearc/conform.nvim- Code formattingmfussenegger/nvim-lint- Linting supportwindwp/nvim-autopairs- Automatic bracket/quote pairing
🖥️ Terminal & Interface:
akinsho/toggleterm.nvim- Integrated terminal managementVonHeikemen/fine-cmdline.nvim- Enhanced command line interface
The configuration includes intuitive keybindings:
<leader>ff- Find files<leader>fw- Live grep search<leader>fb- Browse buffers<C-n>- Toggle file tree<leader>gg- Open lazygit<C-s>- Save file;- Enhanced command line- And many more...
The Only Video You Need to Get Started with Neovim
Below you can find OS specific install instructions for Neovim and dependencies.
After installing all the dependencies continue with the Install glenn.nvim step.
MacOs Install steps
``` brew install neovim ```Ubuntu Install Steps
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip neovim
Debian Install Steps
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip curl
# Now we install nvim
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
sudo rm -rf /opt/nvim-linux64
sudo mkdir -p /opt/nvim-linux64
sudo chmod a+rX /opt/nvim-linux64
sudo tar -C /opt -xzf nvim-linux64.tar.gz
# make it available in /usr/local/bin, distro installs to /usr/bin
sudo ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/
Fedora Install Steps
sudo dnf install -y gcc make git ripgrep fd-find unzip neovim
Arch Install Steps
sudo pacman -S --noconfirm --needed gcc make git ripgrep fd unzip neovim