btw.nvim icon indicating copy to clipboard operation
btw.nvim copied to clipboard

Does not work properly with No-Neck-Pain. Shows up on the sidebar.

Open vinoff opened this issue 10 months ago • 2 comments

I use https://github.com/shortcuts/no-neck-pain.nvim/. btw.nvim does not work properly with that plugin. btw shows on the sidebar, when it should show on the main window.

vinoff avatar Feb 03 '25 11:02 vinoff

Can you please show me how you use NoNeckPain plugin. I try but when use :NoNeckPain command on the btw buffer, it do nothing.

letieu avatar Feb 05 '25 06:02 letieu

This is my lazy config:

{
    "shortcuts/no-neck-pain.nvim",
    -- version = "v1.15.0",
    config = function()
      require("no-neck-pain").setup({
        -- width of the main focused window
        fallbackOnBufferDelete = true,
        width = 100,
        autocmds = {
          enableOnVimEnter = true,
          enableOnTabEnter = true,
          skipEnteringNoNeckPainBuffer = true,
        },
        buffers = {
          colors = {
            background = "#000000",
          },
          right = {
            enabled = false,
          },
        },
      })
    end,
  }

I have it automatically open on startup. Btw is then showed on the no-neck-pain window..

vinoff avatar Feb 05 '25 10:02 vinoff