Skip to content

Commit

Permalink
feat(lua): added luarocks support in MacOSX
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed Apr 6, 2024
1 parent 6d52a71 commit dc72fbe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions roles/lua/tasks/MacOSX.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,12 @@
register: rocks
changed_when: false
check_mode: false

- name: Lua | luarocks install vusted
ansible.builtin.command:
cmd: luarocks --lua-version=5.1 install {{ item }}
loop:
- vusted
- luacheck
- rest.nvim
changed_when: false
1 change: 1 addition & 0 deletions roles/zsh/files/zsh/path_vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ addToPath $GOPATH/bin
addToPath $HOME/go/bin
addToPath $HOME/.dotfiles/bin
addToPath $HOME/.cargo/bin
addToPath $HOME/.luarocks/bin
addToPathFront $HOME/.local/bin
# ccache
addToPathFront /usr/lib/ccache

0 comments on commit dc72fbe

Please sign in to comment.