bootstrap.lua: rm useless variables

This commit is contained in:
siduck 2023-03-27 05:34:12 +05:30
parent 79805b7fea
commit d7f91016a8
1 changed files with 5 additions and 11 deletions

View File

@ -47,23 +47,17 @@ end
M.gen_chadrc_template = function() M.gen_chadrc_template = function()
if not vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1] then if not vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1] then
local path = vim.fn.stdpath "config" .. "/lua/custom/"
local input = vim.fn.input "Do you want to install example custom config? (y/n) : " local input = vim.fn.input "Do you want to install example custom config? (y/n) : "
if input == "y" then if input == "y" then
M.echo "cloning example custom config repo ..." M.echo "cloning example custom config repo ..."
vim.fn.system { "git", "clone", "--depth", "1", "https://github.com/NvChad/example_config", path }
local repo = "https://github.com/NvChad/example_config" vim.fn.delete(path .. ".git", "rf")
local install_path = vim.fn.stdpath "config" .. "/lua/custom"
vim.fn.system { "git", "clone", "--depth", "1", repo, install_path }
-- delete .git from that repo
vim.fn.delete(vim.fn.stdpath "config" .. "/lua/custom/.git", "rf")
M.echo "successfully installed example custom config!"
else else
local custom_dir = vim.fn.stdpath "config" .. "/lua/custom/" vim.fn.mkdir(path, "p")
vim.fn.mkdir(custom_dir, "p")
local file = io.open(custom_dir .. "chadrc.lua", "w") local file = io.open(path .. "chadrc.lua", "w")
file:write "local M = {}\n M.ui = {theme = 'onedark'}\n return M" file:write "local M = {}\n M.ui = {theme = 'onedark'}\n return M"
file:close() file:close()
end end