1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00

nvim: update

This commit is contained in:
Henrik Hautakoski 2024-12-04 15:50:42 +01:00
parent 6e7ca7ed79
commit ef640d0f27
6 changed files with 28 additions and 42 deletions

View file

@ -130,7 +130,7 @@ return {
end
end
},
{ import = "user.plugins.editor.fuzzyfinder" },
{ import = "user.plugins.editor.finder" },
{ import = "user.plugins.editor.autocomplete" },
-- Snippets
{

View file

@ -35,8 +35,8 @@ return {
selection_caret = icons.current .. " ",
multi_icon = icons.selected .. " ",
file_ignore_patterns = {
".git",
"node_modules",
".git/",
"node_modules/",
},
mappings = {
i = {

View file

@ -51,7 +51,7 @@ return {
watching = icons.test.watch,
},
},
config = function (_, opts)
config = function(_, opts)
local adapters = {}
for name, adapter_opts in pairs(opts.adapters or {}) do
table.insert(adapters, require(name)(adapter_opts))