From 64292f3f79e9ae30abb657892be91d99409ec699 Mon Sep 17 00:00:00 2001 From: Maciej Lebiest Date: Sun, 5 Mar 2023 20:20:19 +0100 Subject: [PATCH] add fzf --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c518059..42dbb66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ]