From 2f9fd2954a5c94c50b28c4beae57d4976abdde02 Mon Sep 17 00:00:00 2001 From: ThePrimeagen Date: Tue, 23 Feb 2021 08:47:05 -0700 Subject: [PATCH] feat(more): more on the idea --- lua/harpoon/init.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lua/harpoon/init.lua b/lua/harpoon/init.lua index bcd0efe..e57b5d2 100644 --- a/lua/harpoon/init.lua +++ b/lua/harpoon/init.lua @@ -8,26 +8,31 @@ local cache_config = string.format("%s/harpoon.json", data_path) local M = {} --[[ +-- type Layout = "float" | "split" | "vsplit" | "hsplit" | "replace" (default) | "tab" { projects = { ["/path/to/director"] = { term = { cmds = { }, + // Per project layout specific + layout = Layout ... is there antyhnig that could be options? }, mark = { marks = {}, + // Per project layout specific + layout = Layout ... is there antyhnig that could be options? } } }, term = { - layout = "float" | "split" | "vsplit" | "replace" (default) + layout = Layout }, mark = { - layout = "float" | "split" | "vsplit" | "replace" (default) + layout = Layout }, } --]]