diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-02-09 15:31:07 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-02-09 15:31:07 +0530 |
| commit | 2b5ac273c2adee5327f58fb34ac30b66da917347 (patch) | |
| tree | 019fe65d0c3dad39486c7e4b75367f20a47c0b8b /.local.lua | |
| download | uiua-creative-coding-2b5ac273c2adee5327f58fb34ac30b66da917347.tar.gz uiua-creative-coding-2b5ac273c2adee5327f58fb34ac30b66da917347.zip | |
Init commit with uiua basic shit
Diffstat (limited to '.local.lua')
| -rw-r--r-- | .local.lua | 13 |
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') |
