✨ feat(nvim): new extras for tailwind and tabs
This commit is contained in:
parent
9d9b3b94e3
commit
c15b0082fb
3 changed files with 13 additions and 1 deletions
|
@ -13,7 +13,6 @@
|
|||
"lazyvim.plugins.extras.lang.python",
|
||||
"lazyvim.plugins.extras.lang.python-semshi",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.tailwind",
|
||||
"lazyvim.plugins.extras.lang.typescript",
|
||||
"lazyvim.plugins.extras.lang.yaml",
|
||||
"lazyvim.plugins.extras.linting.eslint",
|
||||
|
@ -50,6 +49,7 @@
|
|||
"plugins.extras.editor.smart-splits",
|
||||
"plugins.extras.editor.ssr",
|
||||
"plugins.extras.editor.suda",
|
||||
"plugins.extras.editor.tabscope",
|
||||
"plugins.extras.editor.telescope.repo",
|
||||
"plugins.extras.editor.telescope.undotree",
|
||||
"plugins.extras.editor.winshift",
|
||||
|
|
5
.config/nvim/lua/plugins/extras/editor/tabscope.lua
Normal file
5
.config/nvim/lua/plugins/extras/editor/tabscope.lua
Normal file
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
"backdround/tabscope.nvim",
|
||||
event = "BufRead",
|
||||
opts = {},
|
||||
}
|
|
@ -6,4 +6,11 @@ return {
|
|||
vim.list_extend(opts.ensure_installed, { "stylelint" })
|
||||
end,
|
||||
},
|
||||
{
|
||||
"MaximilianLloyd/tw-values.nvim",
|
||||
keys = {
|
||||
{ "<leader>cT", "<cmd>TWValues<cr>", desc = "Tailwind CSS values" },
|
||||
},
|
||||
opts = {},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue