Skip to content

Commit

Permalink
Install neovim via linuxbrew
Browse files Browse the repository at this point in the history
  • Loading branch information
devjgm committed Dec 14, 2023
1 parent d5ffc4f commit cd97de8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ ARG USERNAME=sumcol

RUN apt update -y && apt upgrade -y && apt install -y \
build-essential \
zsh \
fish \
neovim \
sudo \
curl \
git \
Expand All @@ -19,4 +16,9 @@ USER $USERNAME
# Install Rust
ENV SHELL /bin/bash
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN . $HOME/.cargo/env && cargo install ripgrep fd-find
RUN . $HOME/.cargo/env && cargo install ripgrep fd-find

# Install Homebrew
RUN NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
RUN eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
RUN NONINTERACTIVE=1 brew install neovim fish

0 comments on commit cd97de8

Please sign in to comment.