hsv2.nvim/nvim/lua/hsv2/init.lua

57 lines
1.8 KiB
Lua

-- vi: et sw=4 ts=4:
-- hsv2
local M = {}
M.cmd = require('hsv2.utils.cmd')
M.config = require('hsv2.config')
M.packer = require('hsv2.utils.packer')
M.setup = require('hsv2.setup')
M.utils = require('hsv2.utils')
return M
-- function M.git_repo_root(path)
-- while string.len(path) > 0 do
-- if vim.fn.isdirectory(path .. '/.git') ~= 0 then
-- return path
-- end
-- path = string.match(path, '(.*)/.*')
-- end
-- return false
-- end
-- function M.hsv2_conf_update(post_sync_script)
-- local fterm = require('FTerm')
-- local repo = M.git_repo_root(os.getenv('MYVIMRC'))
-- if repo and vim.fn.executable('git') ~= 0 then
-- local git = 'git -C ' .. repo
-- local cmd = '!'
-- for _, action in ipairs({
-- 'stash push',
-- 'checkout master',
-- 'pull --rebase',
-- 'switch dev',
-- 'rebase master',
-- 'stash pop'
-- }) do
-- cmd = cmd .. git .. ' ' .. action .. '&&'
-- end
-- vim.api.nvim_exec(cmd, false)
-- if os.getenv('?') ~= 0 then
-- vim.api.nvim_exec('echohl ErrorMsg', false)
-- vim.api.nvim_exec('echo ERRRRRROR', false)
-- vim.api.nvim_exec('echohl None', false)
-- vim.api.nvim_exec([[
-- 0tabnew $MYVIMRC
-- Git mergetool
-- ]], false)
-- end
-- -- TODO: source all scripts found
-- local _, post_sync = next(vim.api.nvim_get_runtime_file(post_sync_script, false))
-- if post_sync then
-- fterm.scratch({
-- cmd = 'nvim -Rmc "source ' .. post_sync .. '" ' .. repo .. '/History.md',
-- })
-- end
-- end
-- end