feat: remove ow directory, keep ow in type annotations only

This commit is contained in:
2025-10-05 00:30:22 +02:00
parent a1ff822efb
commit 8b17ef2b6b
39 changed files with 103 additions and 112 deletions
+28
View File
@@ -0,0 +1,28 @@
---@type LazyPluginSpec
return {
"stevearc/aerial.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter",
},
keys = {
{
"<leader>ss",
function()
require("aerial").toggle({ focus = false, direction = "left" })
end,
},
{
"gs",
function()
require("aerial").focus()
end,
},
},
opts = {
layout = {
max_width = 60,
min_width = 60,
},
attach_mode = "global",
},
}