This commit is contained in:
Maciej Lebiest 2023-03-05 20:20:19 +01:00
parent b03ff6e543
commit 64292f3f79

View file

@ -16,7 +16,8 @@ ENV NEOVIM_PKGS="\
ENV GENERAL_PKGS="\
bash-completion \
procps"
procps \
fzf"
ENV PYTHON_DEVEL_PKGS="\
python3\
@ -58,4 +59,8 @@ RUN nvim --headless +TSUpdateSync \
+"MasonInstall ${MASON_PKGS}" \
+qa || true
RUN echo $'[ -f /usr/share/fzf/key-bindings.bash ] && source /usr/share/fzf/key-bindings.bash \n\
[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash \n\
[ -f /usr/share/fzf/completion.bash ] && source /usr/share/fzf/completion.bash' >> /root/.bashrc
ENTRYPOINT [ "/usr/bin/nvim" ]