Skip to content

Commit

Permalink
fd
Browse files Browse the repository at this point in the history
  • Loading branch information
KDesp73 committed Jun 26, 2024
1 parent 7a84992 commit ec215db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/project-starter/commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ local vim = vim
local M = {}

M.go = function (path, name)
vim.cmd(":silent !cd " .. path .. " && wget -gL https://raw.githubusercontent.com/KDesp73/project-starter.nvim/main/scripts/generate-tree.go && go run generate-tree.go " .. name .. " && rm generate-tree.go")
local command = ":silent !cd " .. path .. " && wget -qL https://raw.githubusercontent.com/KDesp73/project-starter.nvim/main/scripts/generate-tree.go && go run generate-tree.go " .. name .. " && rm generate-tree.go"
vim.cmd(command)
end

M.esp32 = function (path, name)
Expand Down

0 comments on commit ec215db

Please sign in to comment.