You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
4.6 KiB

1 month ago
1 month ago
  1. return {
  2. 'hrsh7th/nvim-cmp',
  3. event = 'InsertEnter',
  4. dependencies = {
  5. -- Snippet Engine & its associated nvim-cmp source
  6. {
  7. 'L3MON4D3/LuaSnip',
  8. build = (function()
  9. -- Build Step is needed for regex support in snippets.
  10. -- This step is not supported in many windows environments.
  11. -- Remove the below condition to re-enable on windows.
  12. if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then
  13. return
  14. end
  15. return 'make install_jsregexp'
  16. end)(),
  17. dependencies = {
  18. -- `friendly-snippets` contains a variety of premade snippets.
  19. -- See the README about individual language/framework/plugin snippets:
  20. -- https://github.com/rafamadriz/friendly-snippets
  21. -- {
  22. -- 'rafamadriz/friendly-snippets',
  23. -- config = function()
  24. -- require('luasnip.loaders.from_vscode').lazy_load()
  25. -- end,
  26. -- },
  27. },
  28. },
  29. 'saadparwaiz1/cmp_luasnip',
  30. -- Adds other completion capabilities.
  31. -- nvim-cmp does not ship with all sources by default. They are split
  32. -- into multiple repos for maintenance purposes.
  33. 'hrsh7th/cmp-nvim-lsp',
  34. 'hrsh7th/cmp-path',
  35. 'hrsh7th/cmp-nvim-lsp-signature-help',
  36. },
  37. config = function()
  38. -- See `:help cmp`
  39. local cmp = require 'cmp'
  40. local luasnip = require 'luasnip'
  41. luasnip.config.setup {}
  42. cmp.setup {
  43. snippet = {
  44. expand = function(args)
  45. luasnip.lsp_expand(args.body)
  46. end,
  47. },
  48. completion = { completeopt = 'menu,menuone,noinsert' },
  49. -- For an understanding of why these mappings were
  50. -- chosen, you will need to read `:help ins-completion`
  51. --
  52. -- No, but seriously. Please read `:help ins-completion`, it is really good!
  53. mapping = cmp.mapping.preset.insert {
  54. -- Select the [n]ext item
  55. ['<C-n>'] = cmp.mapping.select_next_item(),
  56. -- Select the [p]revious item
  57. ['<C-p>'] = cmp.mapping.select_prev_item(),
  58. -- Scroll the documentation window [b]ack / [f]orward
  59. ['<C-b>'] = cmp.mapping.scroll_docs(-4),
  60. ['<C-f>'] = cmp.mapping.scroll_docs(4),
  61. -- Accept ([y]es) the completion.
  62. -- This will auto-import if your LSP supports it.
  63. -- This will expand snippets if the LSP sent a snippet.
  64. ['<C-y>'] = cmp.mapping.confirm { select = true },
  65. -- If you prefer more traditional completion keymaps,
  66. -- you can uncomment the following lines
  67. --['<CR>'] = cmp.mapping.confirm { select = true },
  68. --['<Tab>'] = cmp.mapping.select_next_item(),
  69. --['<S-Tab>'] = cmp.mapping.select_prev_item(),
  70. -- Manually trigger a completion from nvim-cmp.
  71. -- Generally you don't need this, because nvim-cmp will display
  72. -- completions whenever it has completion options available.
  73. ['<C-Space>'] = cmp.mapping.complete {},
  74. -- Think of <c-l> as moving to the right of your snippet expansion.
  75. -- So if you have a snippet that's like:
  76. -- function $name($args)
  77. -- $body
  78. -- end
  79. --
  80. -- <c-l> will move you to the right of each of the expansion locations.
  81. -- <c-h> is similar, except moving you backwards.
  82. ['<C-l>'] = cmp.mapping(function()
  83. if luasnip.expand_or_locally_jumpable() then
  84. luasnip.expand_or_jump()
  85. end
  86. end, { 'i', 's' }),
  87. ['<C-h>'] = cmp.mapping(function()
  88. if luasnip.locally_jumpable(-1) then
  89. luasnip.jump(-1)
  90. end
  91. end, { 'i', 's' }),
  92. -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see:
  93. -- https://github.com/L3MON4D3/LuaSnip?tab=readme-ov-file#keymaps
  94. },
  95. sources = {
  96. { name = 'nvim_lsp' },
  97. { name = 'luasnip' },
  98. { name = 'path' },
  99. { name = 'nvim_lsp_signature_help' },
  100. },
  101. }
  102. end,
  103. }