Install winshift plugin and add remap for WinShift command
This commit is contained in:
@@ -64,9 +64,10 @@ return require("packer").startup(function(use)
|
||||
use({
|
||||
"lukas-reineke/indent-blankline.nvim",
|
||||
config = function ()
|
||||
vim.cmd("let g:indent_blankline_filetype_exclude = ['help']")
|
||||
require("indent_blankline").setup({
|
||||
char = "|",
|
||||
buftype_exclude = { "terminal" }
|
||||
buftype_exclude = { "terminal" },
|
||||
})
|
||||
end
|
||||
})
|
||||
@@ -78,4 +79,18 @@ return require("packer").startup(function(use)
|
||||
require("lightspeed").setup()
|
||||
end
|
||||
})
|
||||
|
||||
-- Window management
|
||||
use({
|
||||
"sindrets/winshift.nvim",
|
||||
config = function ()
|
||||
require("winshift").setup({
|
||||
highlight_moving_win = true,
|
||||
window_picker_ignore = {
|
||||
filetype = { "NvimTree" },
|
||||
buftype = { "terminal" }
|
||||
}
|
||||
})
|
||||
end
|
||||
})
|
||||
end)
|
||||
|
||||
Reference in New Issue
Block a user