Refresh generated nvim config
This commit is contained in:
19
config/neovim/store/lazy-plugins/neo-tree.nvim/Dockerfile
Normal file
19
config/neovim/store/lazy-plugins/neo-tree.nvim/Dockerfile
Normal file
@ -0,0 +1,19 @@
|
||||
FROM ubuntu:22.04
|
||||
|
||||
RUN apt update
|
||||
# install neovim dependencies
|
||||
RUN apt install -y git ninja-build gettext libtool libtool-bin autoconf \
|
||||
automake cmake g++ pkg-config unzip curl doxygen
|
||||
|
||||
# install neovim
|
||||
RUN git clone https://github.com/neovim/neovim
|
||||
RUN cd neovim && make CMAKE_BUILD_TYPE=RelWithDebInfo && make install
|
||||
|
||||
# install required plugins
|
||||
ARG PLUG_DIR="root/.local/share/nvim/site/pack/packer/start"
|
||||
RUN git clone https://github.com/nvim-lua/plenary.nvim $PLUG_DIR/plenary.nvim
|
||||
RUN git clone https://github.com/MunifTanjim/nui.nvim $PLUG_DIR/nui.nvim
|
||||
RUN git clone https://github.com/nvim-tree/nvim-web-devicons.git $PLUG_DIR/nvim-web-devicons
|
||||
COPY . $PLUG_DIR/neo-tree.nvim
|
||||
|
||||
WORKDIR $PLUG_DIR/neo-tree.nvim
|
||||
Reference in New Issue
Block a user