add my first keymap

This commit is contained in:
Osman Faruk Bayram 2025-03-15 23:27:45 +03:00
parent 81ca0e7d48
commit e57b9c080b

View file

@ -1,11 +1,16 @@
{
plugins.cmp = {
autoEnableSources = true;
settings.sources = [
{ name = "nvim_lsp"; }
{ name = "path"; }
{ name = "buffer"; }
{ name = "cmdline"; }
];
settings = {
sources = [
{ name = "nvim_lsp"; }
{ name = "path"; }
{ name = "buffer"; }
{ name = "cmdline"; }
];
mapping = {
"<CR>" = "cmp.mapping.confirm({ select = true })";
};
};
};
}