Add neovim git conflict plugin
This commit is contained in:
parent
37356b7b48
commit
a307b26fa4
1 changed files with 14 additions and 13 deletions
|
@ -1,6 +1,7 @@
|
||||||
local cmp = require "cmp"
|
local cmp = require "cmp"
|
||||||
|
|
||||||
local plugins = {
|
local plugins = {
|
||||||
|
{'akinsho/git-conflict.nvim', version = "*", config = true, lazy = false,},
|
||||||
{
|
{
|
||||||
'numToStr/Comment.nvim',
|
'numToStr/Comment.nvim',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
@ -43,19 +44,19 @@ local plugins = {
|
||||||
require("nvim-dap-virtual-text").setup()
|
require("nvim-dap-virtual-text").setup()
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
-- {
|
||||||
"hrsh7th/nvim-cmp",
|
-- "hrsh7th/nvim-cmp",
|
||||||
opts = function()
|
-- opts = function()
|
||||||
local M = require "plugins.configs.cmp"
|
-- local M = require "plugins.configs.cmp"
|
||||||
M.completion.completeopt = "menu,menuone,noselect"
|
-- M.completion.completeopt = "menu,menuone,noselect"
|
||||||
M.mapping["<CR>"] = cmp.mapping.confirm {
|
-- M.mapping["<CR>"] = cmp.mapping.confirm {
|
||||||
behavior = cmp.ConfirmBehavior.Insert,
|
-- behavior = cmp.ConfirmBehavior.Insert,
|
||||||
select = false,
|
-- select = false,
|
||||||
}
|
-- }
|
||||||
table.insert(M.sources, {name = "crates"})
|
-- table.insert(M.sources, {name = "crates"})
|
||||||
return M
|
-- return M
|
||||||
end,
|
-- end,
|
||||||
},
|
-- },
|
||||||
{
|
{
|
||||||
"m4xshen/hardtime.nvim",
|
"m4xshen/hardtime.nvim",
|
||||||
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||||
|
|
Loading…
Reference in a new issue