Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

Abstract-IDE/abstract-window.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

abstract-window.nvim

Neovim window management plugin that provides a command framework for window-related utilities.


Features

  • Toggle maximize/restore: Quickly maximize the current window and restore its previous dimensions.

note: more will implemented in future

Installation

Use your favorite plugin manager. For lazy.nvim:

{
  'Abstract-IDE/abstract-window.nvim',
    opts = {}
}

Usage

Command

:AbstractWindow toggle-win-max
  • toggle-win-max: Toggles the current window between maximized and its last size.

Keybinding Example

Bind to any key you prefer (e.g. <leader>m):

vim.keymap.set('n', '<leader>m', ':AbstractWindow toggle-win-max<CR>',                        { noremap = true, silent = true })
-- OR
vim.keymap.set('n', '<leader>m', function() require("abstract-window").toggle.maximize() end, { noremap = true, silent = true })

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages