Format plugin configurations
This commit is contained in:
@ -36,13 +36,17 @@ return {
|
||||
["<C-e>"] = {},
|
||||
|
||||
-- show with a list of providers
|
||||
["<C-space>"] = { function(cmp) cmp.show({ providers = { "snippets" } }) end },
|
||||
["<C-space>"] = {
|
||||
function(cmp)
|
||||
cmp.show({ providers = { "snippets" } })
|
||||
end,
|
||||
},
|
||||
},
|
||||
|
||||
appearance = {
|
||||
-- "mono" (default) for "Nerd Font Mono" or "normal" for "Nerd Font"
|
||||
-- Adjusts spacing to ensure icons are aligned
|
||||
nerd_font_variant = "mono"
|
||||
nerd_font_variant = "mono",
|
||||
},
|
||||
|
||||
-- (Default) Only show the documentation popup when manually triggered
|
||||
@ -59,8 +63,8 @@ return {
|
||||
-- when the Rust fuzzy matcher is not available, by using `implementation = "prefer_rust"`
|
||||
--
|
||||
-- See the fuzzy documentation for more information
|
||||
fuzzy = { implementation = "prefer_rust_with_warning" }
|
||||
fuzzy = { implementation = "prefer_rust_with_warning" },
|
||||
},
|
||||
opts_extend = { "sources.default" },
|
||||
},
|
||||
opts_extend = { "sources.default" }
|
||||
}
|
||||
}
|
||||
|
@ -7,8 +7,8 @@ return {
|
||||
require("conform").setup({
|
||||
formatters_by_ft = {
|
||||
json = { "prettier" },
|
||||
lua = { "stylua" }
|
||||
}
|
||||
lua = { "stylua" },
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
@ -12,8 +12,8 @@ return {
|
||||
enable = true,
|
||||
min_length = 3,
|
||||
hl = { underline = true },
|
||||
}
|
||||
})
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -5,6 +5,6 @@ return {
|
||||
require("indentmini").setup()
|
||||
|
||||
vim.cmd.highlight("IndentLine guifg=#444444") -- Set indent line color
|
||||
end
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter"
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
{
|
||||
"windwp/nvim-ts-autotag"
|
||||
}
|
||||
"windwp/nvim-ts-autotag",
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user