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