35 lines
794 B
Lua
35 lines
794 B
Lua
-- Ok, this plugin is really awesome!
|
|
-- And everyone should know about it -- game changer!!!
|
|
return {
|
|
"shortcuts/no-neck-pain.nvim",
|
|
version = "*",
|
|
opts = function()
|
|
require("which-key").add({
|
|
{ "<leader>n", group = "+NoNeckPain" },
|
|
})
|
|
return {
|
|
width = 120,
|
|
mappings = {
|
|
enabled = true,
|
|
},
|
|
autocmds = {
|
|
enableOnVimEnter = true,
|
|
skipEnteringNoNeckPainBuffer = true,
|
|
},
|
|
buffers = {
|
|
left = {
|
|
scratchPad = {
|
|
enabled = false,
|
|
pathToFile = "~/SyncDocuments/scratch-l.md",
|
|
},
|
|
},
|
|
right = {
|
|
scratchPad = {
|
|
enabled = false,
|
|
pathToFile = "~/SyncDocuments/scratch-r.md",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
}
|