Skip to content

Commit

Permalink
plugins/nvim-cmp: reorder sources
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 22, 2024
1 parent 682732e commit 990a18b
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions plugins/completion/nvim-cmp/cmp-helpers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,46 +21,46 @@ in
};

pluginAndSourceNames = {
"luasnip" = "cmp_luasnip";
"snippy" = "cmp-snippy";
"ultisnips" = "cmp-nvim-ultisnips";
"vsnip" = "cmp-vsnip";
"buffer" = "cmp-buffer";
"calc" = "cmp-calc";
"dictionary" = "cmp-dictionary";
"digraphs" = "cmp-digraphs";
"omni" = "cmp-omni";
"spell" = "cmp-spell";
"nvim_lsp" = "cmp-nvim-lsp";
"nvim_lsp_document_symbol" = "cmp-nvim-lsp-document-symbol";
"nvim_lsp_signature_help" = "cmp-nvim-lsp-signature-help";
"vim_lsp" = "cmp-vim-lsp";
"path" = "cmp-path";
"git" = "cmp-git";
"conventionalcommits" = "cmp-conventionalcommits";
"dap" = "cmp-dap";
"cmdline" = "cmp-cmdline";
"cmp-cmdline-history" = "cmp-cmdline-history";
"fuzzy_buffer" = "cmp-fuzzy-buffer";
"fuzzy_path" = "cmp-fuzzy-path";
"rg" = "cmp-rg";
"fish" = "cmp-fish";
"tmux" = "cmp-tmux";
"zsh" = "cmp-zsh";
"crates" = "crates-nvim";
"npm" = "cmp-npm";
"cmp-clippy" = "cmp-clippy";
"cmp-cmdline-history" = "cmp-cmdline-history";
"cmp_pandoc" = "cmp-pandoc-nvim";
"cmp_tabnine" = "cmp-tabnine";
"codeium" = "codeium-nvim";
"conventionalcommits" = "cmp-conventionalcommits";
"copilot" = "copilot-cmp";
"dap" = "cmp-dap";
"crates" = "crates-nvim";
"dictionary" = "cmp-dictionary";
"digraphs" = "cmp-digraphs";
"emoji" = "cmp-emoji";
"fish" = "cmp-fish";
"fuzzy_buffer" = "cmp-fuzzy-buffer";
"fuzzy_path" = "cmp-fuzzy-path";
"git" = "cmp-git";
"greek" = "cmp-greek";
"latex_symbols" = "cmp-latex-symbols";
"look" = "cmp-look";
"luasnip" = "cmp_luasnip";
"nvim_lsp" = "cmp-nvim-lsp";
"nvim_lsp_document_symbol" = "cmp-nvim-lsp-document-symbol";
"nvim_lsp_signature_help" = "cmp-nvim-lsp-signature-help";
"nvim_lua" = "cmp-nvim-lua";
"npm" = "cmp-npm";
"omni" = "cmp-omni";
"pandoc_references" = "cmp-pandoc-references";
"cmp_pandoc" = "cmp-pandoc-nvim";
"path" = "cmp-path";
"rg" = "cmp-rg";
"snippy" = "cmp-snippy";
"spell" = "cmp-spell";
"tmux" = "cmp-tmux";
"treesitter" = "cmp-treesitter";
"ultisnips" = "cmp-nvim-ultisnips";
"vim_lsp" = "cmp-vim-lsp";
"vimwiki-tags" = "cmp-vimwiki-tags";
"codeium" = "codeium-nvim";
"vsnip" = "cmp-vsnip";
"zsh" = "cmp-zsh";
};
}

0 comments on commit 990a18b

Please sign in to comment.