update config
This commit is contained in:
parent
fb9645c583
commit
4263589f22
4 changed files with 18 additions and 3 deletions
|
@ -6,4 +6,6 @@ return {
|
|||
|
||||
-- { import = "astrocommunity.colorscheme.catppuccin" },
|
||||
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
||||
-- { import = "astrocommunity.pack.typescript" },
|
||||
-- { import = "astrocommunity.pack.markdown" },
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ return {
|
|||
-- add more things to the ensure_installed table protecting against community packs modifying it
|
||||
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
|
||||
-- "prettier",
|
||||
-- "stylua",
|
||||
"stylua",
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
@ -29,7 +29,7 @@ return {
|
|||
opts = function(_, opts)
|
||||
-- add more things to the ensure_installed table protecting against community packs modifying it
|
||||
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
|
||||
-- "python",
|
||||
"python",
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
|
|
@ -3,7 +3,7 @@ return {
|
|||
opts = function(_, opts)
|
||||
-- add more things to the ensure_installed table protecting against community packs modifying it
|
||||
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
|
||||
-- "lua"
|
||||
"lua"
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -9,4 +9,17 @@ return {
|
|||
-- require("lsp_signature").setup()
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
-- config = function()
|
||||
-- require("todo-comments").setup {}
|
||||
-- end,
|
||||
opts = {},
|
||||
event = "User AstroFile",
|
||||
cmd = { "TodoQuickFix" },
|
||||
keys = {
|
||||
{ "<leader>T", "<cmd>TodoTelescope<cr>", desc = "Open TODOs in Telescope" },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue