Skip to content

Commit

Permalink
no sL in curl
Browse files Browse the repository at this point in the history
  • Loading branch information
pablopunk committed Jan 26, 2024
1 parent 31d1f4e commit 1c51dfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lazy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
echo
echo "Downloading lazy.nvim config"
mkdir -p ~/.config/nvim/lua/config
curl -sL "https://raw.githubusercontent.com/LazyVim/starter/main/init.lua" > ~/.config/nvim/init.lua
curl "https://raw.githubusercontent.com/LazyVim/starter/main/init.lua" > ~/.config/nvim/init.lua
cat ~/.config/nvim/init.lua
curl -sL "https://raw.githubusercontent.com/LazyVim/starter/main/lua/config/lazy.lua" > ~/.config/nvim/lua/config/lazy.lua
curl "https://raw.githubusercontent.com/LazyVim/starter/main/lua/config/lazy.lua" > ~/.config/nvim/lua/config/lazy.lua
cat ~/.config/nvim/lua/config/lazy.lua
echo
echo "Downloading pablopunk's unclutter config"
mkdir -p ~/.config/nvim/lua/plugins
curl -sL "https://raw.githubusercontent.com/pablopunk/dotfiles/master/nvim/lua/pablopunk/plugins/unclutter.lua" > ~/.config/nvim/lua/plugins/unclutter.lua
curl "https://raw.githubusercontent.com/pablopunk/dotfiles/master/nvim/lua/pablopunk/plugins/unclutter.lua" > ~/.config/nvim/lua/plugins/unclutter.lua
cat ~/.config/nvim/lua/plugins/unclutter.lua
- name: Run tests
Expand Down

0 comments on commit 1c51dfa

Please sign in to comment.