mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
Merge pull request #106 from yavko/main
This commit is contained in:
commit
e1f0270643
2 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue