Nvim: update most of the plugins

This commit is contained in:
Robert Kmieć
2024-02-26 12:51:21 +01:00
parent 71f71cb3ce
commit c55b301dc4
34 changed files with 439 additions and 531 deletions

View File

@@ -8,5 +8,11 @@ return {
vim.o.winwidth = 10
vim.o.winminwidth = 10
require("windows").setup()
local map = vim.keymap.set
local default_options = { noremap = true, silent = true }
map('n', '<C-w>z', "<cmd>WindowsMaximize<cr>", default_options)
map('n', '<C-w>_', "<cmd>WindowsMaximizeVertically<cr>", default_options)
map('n', '<C-w>|', "<cmd>WindowsMaximizeHorizontally<cr>", default_options)
map('n', '<C-w>=', "<cmd>WindowsEqualize<cr>", default_options)
end
}