diff options
| author | Skladnayazebra <skladnayazebra@gmail.com> | 2026-06-29 17:26:11 +0200 |
|---|---|---|
| committer | Skladnayazebra <skladnayazebra@gmail.com> | 2026-06-29 17:26:11 +0200 |
| commit | f4cd750bb5c1be3396da6f14f18f26b97e855422 (patch) | |
| tree | ab7289b2c3b0ca1228a50df93f605c28beed9495 /nvim/lua/config/plugins/blink-cmp.lua | |
| parent | 472838e324ccf89a675ddc9e19070bd82b7fbad0 (diff) | |
format all lua code with stylua
Diffstat (limited to 'nvim/lua/config/plugins/blink-cmp.lua')
| -rw-r--r-- | nvim/lua/config/plugins/blink-cmp.lua | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/nvim/lua/config/plugins/blink-cmp.lua b/nvim/lua/config/plugins/blink-cmp.lua index c9c0447..d8798fa 100644 --- a/nvim/lua/config/plugins/blink-cmp.lua +++ b/nvim/lua/config/plugins/blink-cmp.lua @@ -1,42 +1,42 @@ return { - 'saghen/blink.cmp', - dependencies = { 'rafamadriz/friendly-snippets' }, + "saghen/blink.cmp", + dependencies = { "rafamadriz/friendly-snippets" }, - version = '1.*', + version = "1.*", ---@module 'blink.cmp' ---@type blink.cmp.Config opts = { keymap = { - preset = 'default', + preset = "default", -- <up>-<down> to navigate, <right> to accept - ['<C-j>'] = { 'select_next', 'fallback' }, - ['<C-k>'] = { 'select_prev', 'fallback' }, - ['<Tab>'] = { 'select_and_accept', 'fallback' }, - ['<C-l>'] = { 'select_and_accept', 'fallback' }, + ["<C-j>"] = { "select_next", "fallback" }, + ["<C-k>"] = { "select_prev", "fallback" }, + ["<Tab>"] = { "select_and_accept", "fallback" }, + ["<C-l>"] = { "select_and_accept", "fallback" }, }, appearance = { - nerd_font_variant = 'mono' + nerd_font_variant = "mono", }, completion = { documentation = { auto_show = true } }, sources = { - default = { 'lsp', 'path', 'snippets', 'buffer' }, + default = { "lsp", "path", "snippets", "buffer" }, providers = { snippets = { opts = { friendly_snippets = true, extended_filetypes = { - typescript = { 'javascript' }, - } - } - } - } + typescript = { "javascript" }, + }, + }, + }, + }, }, fuzzy = { implementation = "prefer_rust_with_warning" }, }, - opts_extend = { "sources.default" } + opts_extend = { "sources.default" }, } |
