mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 03:44:57 -04:00
opensuse
This commit is contained in:
commit
e25cf3edec
34 changed files with 3718 additions and 0 deletions
20
.config/nvim/lua/config/winshift.lua
Normal file
20
.config/nvim/lua/config/winshift.lua
Normal 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
|
||||
Loading…
Reference in a new issue