MrCatNerd / temp.nvim

a neovim plugin that creates a temporary window that you can write in

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

temp.nvim

WIP

a neovim plugin that creates a temporary window that you can write in

um so i kinda made this plugin before i searched it so there is a better plugin: https://github.com/m-demare/attempt.nvim

Installation

This plugin is for neovim only. Version -1+ is required.

packer.nvim:

use {
    "MrCatNerd/temp.nvim",
    requires = "nvim-lua/plenary.nvim",
}

lazy.nvim:

  • with lazy loading:
{
    "MrCatNerd/temp.nvim",
    dependencies = "nvim-lua/plenary.nvim",
    keys = {
        { "<leader>www", "<cmd>TempToggleMenu<CR>", desc = "Toggles temp.nvim menu" },
    },
    cmd = "TempToggleMenu",
}
  • without lazy loading:
{
    "MrCatNerd/temp.nvim",
    dependencies = "nvim-lua/plenary.nvim",
}

About

a neovim plugin that creates a temporary window that you can write in

License:MIT License


Languages

Language:Lua 100.0%