dotfiles/home/private_dot_config/nvim/lua/plugins/builtins.lua

47 lines
1 KiB
Lua
Raw Normal View History

2023-02-13 13:17:05 -06:00
return {
{
"LazyVim/LazyVim",
version = false,
opts = {
colorscheme = "catppuccin",
},
},
{
"folke/noice.nvim",
2024-08-20 14:53:02 -05:00
-- opts = {
-- presets = {
-- command_palette = false,
-- },
-- https://github.com/folke/noice.nvim/wiki/Configuration-Recipes#ignore-certain-lsp-servers-for-progress-messages
-- routes = {
-- {
-- filter = {
-- event = "lsp",
-- kind = "msg_show";
-- cond = function(message)
-- local client = vim.tbl_get(message.opts, "progress", "client")
-- return client == "nim_langserver"
-- end,
-- },
-- opts = { skip = true },
-- },
-- },
-- },
2023-02-13 13:17:05 -06:00
},
2023-09-11 10:24:09 -05:00
{
"nvim-treesitter/nvim-treesitter",
2023-11-30 14:25:23 -06:00
opts = function(_, opts)
opts.ensure_installed = vim.list_extend(opts.ensure_installed or {}, {
"vim",
"vimdoc",
2023-09-11 10:24:09 -05:00
"html",
2023-11-30 14:25:23 -06:00
"toml",
2023-09-11 10:24:09 -05:00
"json",
2023-11-30 14:25:23 -06:00
"yaml",
2023-09-11 10:24:09 -05:00
"regex",
2023-11-30 14:25:23 -06:00
})
end,
2023-09-11 10:24:09 -05:00
},
2023-02-13 13:17:05 -06:00
}