1
0
Fork 0

update config

main
Dominic Reich 1 year ago
parent fb9645c583
commit 4263589f22
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -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…
Cancel
Save