mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
20 lines
424 B
Lua
20 lines
424 B
Lua
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
|