mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 20:13:40 +01:00
Improve style of setup.rkt script
Co-authored-by: Jimmy McNutt <jmcnuttc@gmail.com>
This commit is contained in:
parent
abd14e0b34
commit
d6e65f12b4
1 changed files with 8 additions and 8 deletions
16
setup.rkt
16
setup.rkt
|
@ -27,20 +27,20 @@
|
|||
(current-directory script-dir))
|
||||
|
||||
;; Verify valid verb
|
||||
(when (not (for/or ([valid-verb verbs])
|
||||
(symbol=? valid-verb verb)))
|
||||
(error "Invalid verb" verb))
|
||||
(unless (for/or ([valid-verb verbs])
|
||||
(symbol=? valid-verb verb))
|
||||
(raise-user-error "Invalid verb" verb))
|
||||
|
||||
(case verb
|
||||
[(install-scripts)
|
||||
(match verb
|
||||
['install-scripts
|
||||
(local-require "setup/commands/install-scripts.rkt")
|
||||
(run)]
|
||||
[(install-lsps-paru)
|
||||
['install-lsps-paru
|
||||
(local-require "setup/commands/install-lsps-paru.rkt")
|
||||
(run)]
|
||||
[(setup-nvim-config)
|
||||
['setup-nvim-config
|
||||
(local-require "setup/commands/setup-nvim-config.rkt")
|
||||
(run)]
|
||||
[(confgen)
|
||||
['confgen
|
||||
(local-require "setup/commands/confgen.rkt")
|
||||
(run)])
|
||||
|
|
Loading…
Reference in a new issue