diff options
| author | Nanderty <psopka@sopka.ch> | 2024-03-19 23:34:44 +0100 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2024-03-19 23:34:44 +0100 |
| commit | 28835a6029ca40207c369fa2374fe0ebfb6b9b42 (patch) | |
| tree | 47e388ceb23861bc12abcafc0e1d95f6dc89a807 /lua/plugins/cmp.lua | |
| parent | 14dce3d5b57208de848c0b6e9053ac53b13e7c47 (diff) | |
| download | neovim-config-28835a6029ca40207c369fa2374fe0ebfb6b9b42.tar.gz neovim-config-28835a6029ca40207c369fa2374fe0ebfb6b9b42.tar.bz2 neovim-config-28835a6029ca40207c369fa2374fe0ebfb6b9b42.zip | |
config cleanup
Diffstat (limited to 'lua/plugins/cmp.lua')
| -rw-r--r-- | lua/plugins/cmp.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index e3305ce..a7bc93f 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua @@ -3,8 +3,14 @@ return { 'L3MON4D3/LuaSnip', event = 'InsertEnter', keys = { - { 'jj', function() require('luasnip').jump(1) end, mode = 'i' }, - { 'kk', function() require('luasnip').jump(-1) end, mode = 'i' }, + { + 'jj', + function() require('luasnip').jump(1) end, mode = 'i' + }, + { + 'kk', + function() require('luasnip').jump(-1) end, mode = 'i' + }, }, opts = { history = true, |
