changed absolute dir to use HOME variable in options.lua

pull/81/head
Raffaele Wylde 2024-07-09 02:37:00 -04:00
parent 82aea28ed3
commit 07742e29e5
1 changed files with 3 additions and 3 deletions

View File

@ -16,6 +16,6 @@ vim.opt.autowriteall = true
vim.opt.swapfile = false
vim.opt.writebackup = true
vim.g.CheatSheetDisableFrameworkDetection = 0
vim.g.ruby_host_prog = "/Users/wylde/.local/share/mise/installs/ruby/3.3.1/bin/ruby"
vim.g.python_host_prog = "/Users/wylde/.local/share/mise/installs/python/3.12.3/bin/python"
vim.g.node_host_prog = "/USers/wylde/.local/share/mise/installs/node/lts/bin/node"
vim.g.ruby_host_prog = "$HOME/.local/share/mise/installs/ruby/3.3.1/bin/ruby"
vim.g.python_host_prog = "$HOME/.local/share/mise/installs/python/3.12.3/bin/python"
vim.g.node_host_prog = "$HOME/.local/share/mise/installs/node/lts/bin/node"