diff --git a/plugins/community.lua b/plugins/community.lua index 6918be5..c063e02 100644 --- a/plugins/community.lua +++ b/plugins/community.lua @@ -6,4 +6,6 @@ return { -- { import = "astrocommunity.colorscheme.catppuccin" }, -- { import = "astrocommunity.completion.copilot-lua-cmp" }, + -- { import = "astrocommunity.pack.typescript" }, + -- { import = "astrocommunity.pack.markdown" }, } diff --git a/plugins/mason.lua b/plugins/mason.lua index 6566f34..eb673d5 100644 --- a/plugins/mason.lua +++ b/plugins/mason.lua @@ -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, }, diff --git a/plugins/treesitter.lua b/plugins/treesitter.lua index 18c6da6..e7935ca 100644 --- a/plugins/treesitter.lua +++ b/plugins/treesitter.lua @@ -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, } diff --git a/plugins/user.lua b/plugins/user.lua index acdbf63..6796faf 100644 --- a/plugins/user.lua +++ b/plugins/user.lua @@ -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 = { + { "T", "TodoTelescope", desc = "Open TODOs in Telescope" }, + }, + }, }