1
0
Fork 0

nvim: Layz-load REPL and shell exes

This commit is contained in:
Daniel Kempkens 2023-10-16 00:46:09 +02:00
parent 3a430aaf62
commit f034a84bf8
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -2,30 +2,41 @@
wezterm (require :wezterm)]
(fn exe [bin] (vim.fn.exepath bin))
(fn split [program]
(let [args [:cli :split-pane :--bottom :--percent :30 "--"]]
(fn open-split [program-fn]
(let [args [:cli :split-pane :--bottom :--percent :30 "--"]
program (program-fn)]
(each [_ value (ipairs program)]
(table.insert args value))
(wezterm.exec args)))
(local elixir [(exe :iex)])
(local erlang [(exe :erl)])
(local fennel [(exe :fennel) :--repl])
(local fish [(exe :fish)])
(local javascript [(exe :node)])
(local nix [(exe :nix) :repl])
(local ruby [(exe :irb)])
(local elixir #[(exe :iex)])
(local erlang #[(exe :erl)])
(local fennel #[(exe :fennel) :--repl])
(local fish #[(exe :fish)])
(local java #[(exe :jshell)])
(local javascript #[(exe :node)])
(local nix #[(exe :nix) :repl])
(local ruby #[(exe :irb)])
(local typescript #[(exe :node)])
;; Map filetype to REPL
(local repl-map {: elixir : erlang : fennel : fish : javascript : nix : ruby})
(local repl-map {: elixir
: erlang
: fennel
: fish
: java
: javascript
: nix
: ruby
: typescript})
(fn mod.open-shell []
(let [shell (. repl-map :fish)]
(split shell)))
(open-split shell)))
(fn mod.open-repl []
(let [ft vim.bo.filetype
repl (. repl-map ft)]
(when (not= repl nil)
(split repl))))
(open-split repl))))
mod)