]> git.rmz.io Git - dotfiles.git/blob - nvim/lua/plugins/lang/git.lua
vim: do not set pastetoggle in nvim
[dotfiles.git] / nvim / lua / plugins / lang / git.lua
1 return {
2 -- Treesitter git support
3 { "nvim-treesitter/nvim-treesitter",
4 opts = { ensure_installed = { "git_config", "gitcommit", "git_rebase", "gitignore", "gitattributes" } },
5 },
6
7 {
8 "hrsh7th/nvim-cmp",
9 optional = true,
10 dependencies = {
11 { "petertriho/cmp-git", opts = {} },
12 },
13 ---@module 'cmp'
14 ---@param opts cmp.ConfigSchema
15 opts = function(_, opts)
16 table.insert(opts.sources, { name = "git" })
17 end,
18 },
19 }