nvim-config/lua/custom/plugins/init.lua
dlond 68f26dc50d Optimize Neovim configuration structure and LSP setup
- Remove duplicate nvim-web-devicons loading (already in kickstart)
- Add clangd configuration to custom LSP setup with proper flags
- Replace complex clangd_helper with universal LSP reload keybind (<leader>lr)
- Clean up unused clangd target selection keybind
- Streamline plugin organization for better maintainability

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-26 19:56:13 +12:00

14 lines
575 B
Lua

-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {
-- { import = 'custom.plugins.completion' },
-- { import = 'custom.plugins.debug' },
-- { import = 'custom.plugins.formatting' },
{ import = 'custom.plugins.lsp' },
-- { import = 'custom.plugins.nvim-tmux-navigator' },
-- { import = 'custom.plugins.telescope' },
-- { import = 'custom.plugins.theme' },
-- { import = 'custom.plugins.treesitter' },
}