12 lines
346 B
Lua
12 lines
346 B
Lua
return {
|
|
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
|
{ "nvim-tree/nvim-web-devicons", lazy = true },
|
|
{
|
|
"ckolkey/ts-node-action",
|
|
dependencies = { "nvim-treesitter" },
|
|
opts = {},
|
|
keys = {
|
|
{ "<leader>ls", function() require("ts-node-action").node_action() end, desc = "Node Action" }
|
|
}
|
|
},
|
|
}
|