Modernize Neovim configuration with complete tech stack support#1
Draft
Modernize Neovim configuration with complete tech stack support#1
Conversation
Major upgrades: - Migrated from Packer to lazy.nvim for faster plugin management - Replaced nvim-lsp-installer with mason.nvim + mason-lspconfig.nvim - Replaced null-ls with conform.nvim (formatting) and nvim-lint (linting) Language support enhancements: - Java: Added nvim-jdtls for Spring Boot and Gradle projects - TypeScript/JavaScript: Enhanced ts_ls configuration for React/Vite - Golang: Configured gopls with all modern features and hints - Python: Added Jupyter notebook support via molten-nvim - Bash: Full LSP and linting support New features: - nvim-dap debugging for Go, Python, and Java - Bottom horizontal terminal (VS Code style) with toggleterm - Enhanced nvim-tree with diagnostics and git integration - which-key for discoverable keybindings - Modern treesitter configuration for all languages - Auto-formatting on save with language-specific formatters - Comprehensive linting with language-specific linters Files added: - README.md with full documentation - ftplugin/java.lua for Java-specific configuration - lua/user/lazy.lua for lazy.nvim setup - lua/user/conform.lua for formatting - lua/user/lint.lua for linting - lua/user/dap.lua for debugging - lua/user/molten.lua for Jupyter notebooks - lua/user/whichkey.lua for keybinding discovery - lua/user/lsp/mason.lua for LSP management - lua/user/lsp/settings/* for language-specific LSP configs Files updated: - init.lua simplified with lazy.nvim - lua/user/toggleterm.lua for bottom terminal layout - lua/user/nvim-tree.lua with enhanced configuration - lua/user/treesitter.lua with tech stack parsers - lua/user/keymaps.lua with leader key and new mappings - lua/user/lsp/init.lua to use mason instead of lsp-installer Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
Removed image.nvim plugin as it requires luarocks which may not be available on all systems. Jupyter notebooks will still work through molten-nvim, just without inline image rendering. Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Major upgrades:
Language support enhancements:
New features:
Files added:
Files updated:
Generated with Claude Code