AutoYADM commit: 2024-12-13 14:30:01

This commit is contained in:
Daniel Fichtinger 2024-12-13 14:30:01 -05:00
parent 7d6d79933f
commit 66b2c61487
7 changed files with 12 additions and 4 deletions

View file

@ -96,5 +96,6 @@
"vim-tridactyl": { "branch": "master", "commit": "fdd069bde3a34c786abed4601b6d59a065590ad9" },
"vimtex": { "branch": "master", "commit": "3401dc81a14b7251bd813e2411eaf0d3b65bd2af" },
"which-key.nvim": { "branch": "main", "commit": "4ab3bbe976e63b5390d3fca74a52a092a041cd30" },
"yanky.nvim": { "branch": "main", "commit": "f9b905994cccf3c55f41af3a0a1f4c76c844e411" },
"yazi.nvim": { "branch": "main", "commit": "89e011ee7df170e681a112bb293c2599b3b97853" }
}

View file

@ -4,6 +4,7 @@
"lazyvim.plugins.extras.ai.copilot-chat",
"lazyvim.plugins.extras.coding.mini-comment",
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.coding.yanky",
"lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.editor.dial",
"lazyvim.plugins.extras.editor.inc-rename",

View file

@ -3,7 +3,10 @@
-- Add any additional keymaps here
local map = vim.keymap.set
local wk = require("which-key")
local cmdh = require("colemak-dh")
map({ "n" }, "<C-Cr>", function()
vim.notify("Done!")
end)
vim.keymap.set({ "i", "n" }, "<C-t>", "<Nop>")

View file

@ -12,7 +12,7 @@
-- })
return {
"hrsh7th/nvim-cmp",
-- enabled = false,
enabled = false,
-- ---@param opts cmp.ConfigSchema
-- opts = function(_, opts)
-- local has_words_before = function()

View file

@ -32,7 +32,8 @@ return {
},
completion = {
-- Set to false to disable completion.
nvim_cmp = true,
-- TODO: Figure out how to make compatible with blink?
nvim_cmp = false,
-- Trigger completion at 2 chars.
min_chars = 2,
},