add d2 lang support
This commit is contained in:
parent
9cc6739703
commit
b8ecf5ffab
2 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,8 @@ RUN dnf install -y \
|
||||||
${GENERAL_PKGS} ${NEOVIM_PKGS} ${PYTHON_DEVEL_PKGS} ${PERL_DEVEL_PKGS} \
|
${GENERAL_PKGS} ${NEOVIM_PKGS} ${PYTHON_DEVEL_PKGS} ${PERL_DEVEL_PKGS} \
|
||||||
&& dnf clean all && \
|
&& dnf clean all && \
|
||||||
cpanm PLS && \
|
cpanm PLS && \
|
||||||
pip install ${PIP_PKGS}
|
pip install ${PIP_PKGS} && \
|
||||||
|
curl -fsSL https://d2lang.com/install.sh | sh -s --
|
||||||
|
|
||||||
RUN rm /root/.config/nvim/lazy-lock.json || true
|
RUN rm /root/.config/nvim/lazy-lock.json || true
|
||||||
# install lsp and linters using mason
|
# install lsp and linters using mason
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
|
{ 'terrastruct/d2-vim' },
|
||||||
-- Nvim-tree stuff
|
-- Nvim-tree stuff
|
||||||
{ 'nvim-tree/nvim-web-devicons' }, -- optional, for file icons
|
{ 'nvim-tree/nvim-web-devicons' }, -- optional, for file icons
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue