mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 18:53:41 +01:00
11 lines
308 B
Racket
11 lines
308 B
Racket
#lang racket
|
|
(require "../common.rkt")
|
|
(provide run)
|
|
|
|
(define (run)
|
|
(define nvim-config-dir (build-path (find-system-path 'home-dir) ".config" "nvim"))
|
|
(install-zig "mzte-nv")
|
|
(rm nvim-config-dir)
|
|
(copy "mzte-nv/conf" nvim-config-dir)
|
|
(cmd "mzte-nv-compile" (path->string nvim-config-dir))
|
|
null)
|