This commit is contained in:
2025-05-02 19:40:56 -04:00
parent 1fcf856ab3
commit 93f4e12728
2 changed files with 4 additions and 4 deletions

View File

@@ -6,6 +6,7 @@
ui = auto
[alias]
branches = for-each-ref --sort=-committerdate --format=\"%(color:blue)%(authordate:relative)\t%(color:red)%(authorname)\t%(color:white)%(color:bold)%(refname:short)\" refs/remotes
qs = commit -am "save"
[merge]
ff = only
[fetch]

View File

@@ -29,10 +29,9 @@ return {
end,
},
mapping = cmp.mapping.preset.insert({
["<Tab>"] = cmp.mapping.select_next_item(),
["<S-Tab>"] = cmp.mapping.select_prev_item(),
["<CR>"] = cmp.mapping.confirm({ select = true }),
["<C-Space>"] = cmp.mapping.complete(),
["<C-n>"] = cmp.mapping.select_next_item(),
["<C-p>"] = cmp.mapping.select_prev_item(),
["<C-y>"] = cmp.mapping.confirm({ select = true }),
}),
sources = cmp.config.sources({
{ name = "nvim_lsp" },