Skip to content

Commit

Permalink
Rename install-language-servers.sh to install-coding-helpers.sh
Browse files Browse the repository at this point in the history
This now has much more than just language servers.
  • Loading branch information
ViViDboarder committed Dec 13, 2023
1 parent 60819a7 commit 3a637ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ install:
update:
sh ./update-plugins.sh

.PHONY: install-coding-helpers
install-coding-helpers:
sh ./install-coding-helpers.sh

.PHONY: install-language-servers
install-language-servers:
sh ./install-language-servers.sh
install-language-servers: install-coding-helpers
@echo "Using obsolete make target. Change to install-coding-helpers"

.PHONY: uninstall
uninstall:
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ RUN mkdir $HOME/bin
ENV PATH $HOME/bin:$PATH

# Install Language servers
COPY --chown=vividboarder:users ./install-language-servers.sh ./
RUN ./install-language-servers.sh
COPY --chown=vividboarder:users ./install-coding-helpers.sh ./
RUN ./install-coding-helpers.sh

# Add config
COPY --chown=vividboarder:users ./neovim $HOME/.config/nvim
Expand Down
File renamed without changes.

0 comments on commit 3a637ad

Please sign in to comment.