mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-05 23:29:27 +01:00
12 lines
346 B
Racket
12 lines
346 B
Racket
#lang racket
|
|
(require "../common.rkt")
|
|
(provide run)
|
|
|
|
(define (run)
|
|
(define nvim-config-dir (build-path (find-system-path 'home-dir) ".config" "nvim"))
|
|
(generate-cgopt-json)
|
|
(install-zig "mzte-nv" "ReleaseSafe")
|
|
(rm nvim-config-dir)
|
|
(copy "mzte-nv/conf" nvim-config-dir)
|
|
(cmd "mzte-nv-compile" (path->string nvim-config-dir))
|
|
null)
|