Hyprland-dotfiles/nvim/lua/modules/configs/editor/splits.lua

15 lines
368 B
Lua
Raw Normal View History

2024-07-21 02:51:17 -04:00
return function()
require("modules.utils").load_plugin("smart-splits", {
-- Ignored buffer types (only while resizing)
ignored_buftypes = {
"nofile",
"quickfix",
"prompt",
},
-- Ignored filetypes (only while resizing)
ignored_filetypes = { "NvimTree" },
-- the default number of lines/columns to resize by at a time
default_amount = 3,
})
end