1
0
Fork 0
dotfiles/home/config/nvim/nifoc/nix.fnl

8 lines
339 B
Fennel

;; Move certain PATH entries to the end of the variable, because XCode CLI is not installed
;; (and I don't want to see the prompt)
(let [current-path vim.env.PATH
move-paths ":/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin"
new-path (-> current-path (string.gsub move-paths "") (.. move-paths))]
(set vim.env.PATH new-path))