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