about summary refs log tree commit diff
path: root/config/nvim/lua/plugins/scratch-buffer.lua
blob: a6526ababc9834a4f1f33d8b88e01af5e83f074c (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
  'miguelcrespo/scratch-buffer.nvim',
  event = 'VimEnter',
  config = function()
    require('scratch-buffer').setup()
  end,
  dependencies = {
    -- Recommended if you want interactive evaluation
    "Olical/conjure"
  }
}