Merge pull request #106 from yavko/main

This commit is contained in:
raf 2023-07-30 09:58:40 +03:00 committed by GitHub
commit e1f0270643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View file

@ -27,3 +27,7 @@ https://github.com/notashelf[notashelf]:
* LSP integrated breadcrumbs with <<opt-vim.ui.breadcrumbs>> through nvim-navic
* LSP navigation helper with nvim-navbuddy, depends on nvim-navic (automatically enabled)
https://github.com/yavko[yavko]:
* Added Deno Language Server for javascript/typescript

View file

@ -20,6 +20,17 @@ with builtins; let
}
'';
};
denols = {
package = pkgs.deno;
lspConfig = ''
vim.g.markdown_fenced_languages = { "ts=typescript" }
lspconfig.denols.setup {
capabilities = capabilities;
on_attach = attach_keymaps,
cmd = { "${cfg.lsp.package}/bin/deno", "lsp" }
}
'';
};
};
# TODO: specify packages