diff options
Diffstat (limited to 'common/config/nvim/lua/plugins/overseer.lua')
| -rwxr-xr-x | common/config/nvim/lua/plugins/overseer.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/common/config/nvim/lua/plugins/overseer.lua b/common/config/nvim/lua/plugins/overseer.lua new file mode 100755 index 0000000..593d094 --- /dev/null +++ b/common/config/nvim/lua/plugins/overseer.lua @@ -0,0 +1,14 @@ +local M = {} + +function M.setup() + local ok, overseer = pcall(require, 'overseer') + if not ok or not overseer then + return false + end + + overseer.setup({}) + + return true +end + +return M |
