This commit is contained in:
Steve 2023-03-30 21:15:46 -04:00
commit 984dc04492
30 changed files with 2213 additions and 1 deletions

View file

@ -0,0 +1,20 @@
local M = {}
function M.setup()
local winshift = require("winshift")
local conf = {
conf = {
highlight_moving_win = true, --hl window when being moved
focused_hl_group = "Visual", -- hl group for moving window
moving_win_options = {
wrap = false,
cursorline = false,
cusorcolumn = false,
colorcolumn = "",
}
}
}
winshift.setup(conf)
end
return M