**Configuration Enhancements:** - Enable Nerd Font support in init.lua - Enhanced LSP configuration with better clangd setup - Improved query driver paths and error handling - Added support for more filetypes (cmake, tex, etc.) **Plugin Management:** - Add GitHub Copilot integration - Remove experimental plugins (avante, completion, statusline, theme) - Reorganize plugin imports for better structure **Repository Maintenance:** - Update .gitignore for better artifact handling - Clean up unused plugin configurations - Establish clean baseline for future development Resolves #12
17 lines
681 B
Lua
17 lines
681 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.theme' },
|
|
-- { import = 'custom.plugins.avante' },
|
|
{ import = 'custom.plugins.copilot' },
|
|
{ import = 'custom.plugins.debug' },
|
|
{ import = 'custom.plugins.formatting' },
|
|
{ import = 'custom.plugins.git' },
|
|
{ import = 'custom.plugins.lsp' },
|
|
{ import = 'custom.plugins.nvim-tmux-navigator' },
|
|
{ import = 'custom.plugins.telescope' },
|
|
{ import = 'custom.plugins.treesitter' },
|
|
}
|