17 lines
288 B
Lua
17 lines
288 B
Lua
if true then
|
|
return {}
|
|
end
|
|
|
|
return {
|
|
"shortcuts/no-neck-pain.nvim",
|
|
version = "*",
|
|
config = function()
|
|
require("no-neck-pain").setup({
|
|
width = 125,
|
|
autocmds = {
|
|
enableOnVimEnter = true,
|
|
skipEnteringNoNeckPainBuffer = true,
|
|
},
|
|
})
|
|
end,
|
|
}
|