feat(nvim): add tagalong

This commit is contained in:
winston 2023-07-19 21:43:53 +02:00
parent 013871c90f
commit 9770fafd9d
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 19 additions and 8 deletions

View file

@ -61,6 +61,7 @@
"rainbow-delimiters.nvim": { "branch": "master", "commit": "c6c2bda90f9f2d9eb047400f9153893d425bfa3c" }, "rainbow-delimiters.nvim": { "branch": "master", "commit": "c6c2bda90f9f2d9eb047400f9153893d425bfa3c" },
"rust-tools.nvim": { "branch": "master", "commit": "0cc8adab23117783a0292a0c8a2fbed1005dc645" }, "rust-tools.nvim": { "branch": "master", "commit": "0cc8adab23117783a0292a0c8a2fbed1005dc645" },
"schemastore.nvim": { "branch": "main", "commit": "0682f56392ddc86cf5e6b2af76a63bc48ad4ed84" }, "schemastore.nvim": { "branch": "main", "commit": "0682f56392ddc86cf5e6b2af76a63bc48ad4ed84" },
"tagalong.vim": { "branch": "main", "commit": "d12622b866c9eea5204a792517d11586c51715a2" },
"telescope-asynctasks.nvim": { "branch": "main", "commit": "065300fb0a8ba6a1c81991da1873c73e136dcdc0" }, "telescope-asynctasks.nvim": { "branch": "main", "commit": "065300fb0a8ba6a1c81991da1873c73e136dcdc0" },
"telescope-file-browser.nvim": { "branch": "master", "commit": "e03ff55962417b69c85ef41424079bb0580546ba" }, "telescope-file-browser.nvim": { "branch": "master", "commit": "e03ff55962417b69c85ef41424079bb0580546ba" },
"telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" },

View file

@ -16,17 +16,27 @@ return {
-- pretty much default nvim at this point -- pretty much default nvim at this point
{ "kylechui/nvim-surround", opts = {} }, { "kylechui/nvim-surround", opts = {} },
{ "numtostr/comment.nvim", opts = {} }, { "numtostr/comment.nvim", opts = {} },
--
{
"AndrewRadev/tagalong.vim",
config = function()
vim.g.tagalong_filetypes = {
"astro",
"ejs",
"html",
"htmldjango",
"javascriptreact",
"jsx",
"php",
"typescriptreact",
"xml",
}
end,
},
{ {
"lukas-reineke/headlines.nvim", "lukas-reineke/headlines.nvim",
dependencies = "nvim-treesitter/nvim-treesitter", dependencies = "nvim-treesitter/nvim-treesitter",
opts = { opts = {},
markdown = {
dash_string = "",
quote_string = "",
fat_headline_upper_string = "",
fat_headline_lower_string = "🬂",
},
},
}, },
{ "dnlhc/glance.nvim", opts = {} }, { "dnlhc/glance.nvim", opts = {} },
} }