dotfiles/home/apps/neovim/lua/plugins/editor.lua

43 lines
943 B
Lua
Raw Normal View History

---@type LazyPluginSpec[]
return {
-- zen mode
"pocco81/true-zen.nvim",
-- respect project settings
"gpanders/editorconfig.nvim",
-- best hop
"ggandor/lightspeed.nvim",
-- run tasks
"skywind3000/asyncrun.vim",
"skywind3000/asynctasks.vim",
-- ui
"stevearc/dressing.nvim",
-- highlight todo/fixme/etc
{ "folke/todo-comments.nvim", opts = {} },
-- pretty much default nvim at this point
{ "kylechui/nvim-surround", opts = {} },
{ "numtostr/comment.nvim", opts = {} },
2023-07-19 21:43:53 +02:00
--
{
"AndrewRadev/tagalong.vim",
config = function()
vim.g.tagalong_filetypes = {
"astro",
"ejs",
"html",
"htmldjango",
"javascriptreact",
"jsx",
"php",
"typescriptreact",
"xml",
}
end,
},
2023-03-24 22:51:29 +01:00
{
"lukas-reineke/headlines.nvim",
dependencies = "nvim-treesitter/nvim-treesitter",
2023-07-19 21:43:53 +02:00
opts = {},
2023-03-24 22:51:29 +01:00
},
{ "dnlhc/glance.nvim", opts = {} },
}