aboutsummaryrefslogtreecommitdiff
path: root/.local.lua
diff options
context:
space:
mode:
Diffstat (limited to '.local.lua')
-rw-r--r--.local.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/.local.lua b/.local.lua
new file mode 100644
index 0000000..3835641
--- /dev/null
+++ b/.local.lua
@@ -0,0 +1,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')