aboutsummaryrefslogtreecommitdiff
path: root/.local.lua
blob: 3835641fff15897ba6da15ad57959821fbe99895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- My repl config: https://github.com/phenax/neovim-config/blob/main/lua/phenax/repl.lua
--- @type table
Repl = Repl

Repl.replModes.uiua = {
  config = {
    command = 'uiua repl',
    clear_screen = false,
    width = function(w) return w * 0.4 end,
  }
}

Repl.apply_repl_mode('uiua')