- 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>
14 lines
575 B
Lua
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' },
|
|
}
|