From f4cd750bb5c1be3396da6f14f18f26b97e855422 Mon Sep 17 00:00:00 2001 From: Skladnayazebra Date: Mon, 29 Jun 2026 17:26:11 +0200 Subject: format all lua code with stylua --- nvim/lua/config/plugins/blink-cmp.lua | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'nvim/lua/config/plugins/blink-cmp.lua') 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", -- - to navigate, to accept - [''] = { 'select_next', 'fallback' }, - [''] = { 'select_prev', 'fallback' }, - [''] = { 'select_and_accept', 'fallback' }, - [''] = { 'select_and_accept', 'fallback' }, + [""] = { "select_next", "fallback" }, + [""] = { "select_prev", "fallback" }, + [""] = { "select_and_accept", "fallback" }, + [""] = { "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" }, } -- cgit v1.3.1