2023-05-04 22:34:24 +02:00
|
|
|
#!/usr/bin/racket
|
|
|
|
#lang racket
|
|
|
|
|
|
|
|
;; Script for setting up the config.
|
|
|
|
|
2023-05-04 23:19:34 +02:00
|
|
|
(require racket/runtime-path
|
|
|
|
"setup/common.rkt")
|
2023-05-04 22:34:24 +02:00
|
|
|
|
|
|
|
;; Valid verbs
|
|
|
|
(define verbs '(install-scripts install-lsps-paru setup-nvim-config confgen))
|
|
|
|
|
|
|
|
(define verb
|
|
|
|
(command-line
|
|
|
|
#:program "setup.rkt"
|
|
|
|
#:usage-help "Sets up my dotfiles. Available verbs:"
|
|
|
|
"install-scripts, install-lsps-paru, setup-nvim-config, confgen"
|
|
|
|
#:once-each [("-o" "--bin-output") o "Output directory for executables" (output-bin-path o)]
|
|
|
|
#:args (verb)
|
|
|
|
(string->symbol verb)))
|
|
|
|
|
|
|
|
;; Disable random printing of top-level stuff
|
|
|
|
(current-print void)
|
|
|
|
|
|
|
|
;; Set working directory to the location of the script
|
|
|
|
(begin
|
|
|
|
(define-runtime-path script-dir ".")
|
|
|
|
(current-directory script-dir))
|
|
|
|
|
|
|
|
;; Verify valid verb
|
2023-05-25 14:44:04 +02:00
|
|
|
(unless (for/or ([valid-verb verbs])
|
|
|
|
(symbol=? valid-verb verb))
|
|
|
|
(raise-user-error "Invalid verb" verb))
|
2023-05-04 22:34:24 +02:00
|
|
|
|
2023-05-25 14:44:04 +02:00
|
|
|
(match verb
|
|
|
|
['install-scripts
|
2023-05-04 23:19:34 +02:00
|
|
|
(local-require "setup/commands/install-scripts.rkt")
|
|
|
|
(run)]
|
2023-05-25 14:44:04 +02:00
|
|
|
['install-lsps-paru
|
2023-05-04 23:19:34 +02:00
|
|
|
(local-require "setup/commands/install-lsps-paru.rkt")
|
|
|
|
(run)]
|
2023-05-25 14:44:04 +02:00
|
|
|
['setup-nvim-config
|
2023-05-04 23:19:34 +02:00
|
|
|
(local-require "setup/commands/setup-nvim-config.rkt")
|
|
|
|
(run)]
|
2023-05-25 14:44:04 +02:00
|
|
|
['confgen
|
2023-05-04 23:19:34 +02:00
|
|
|
(local-require "setup/commands/confgen.rkt")
|
|
|
|
(run)])
|