Skip to content

Commit

Permalink
feat(pack): add typescript.nvim code actions (#215)
Browse files Browse the repository at this point in the history
* feat(pack): add typescript.nvim code actions

* fix(pack): remove null-ls tsserver-extension for denols

Co-authored-by: Micah Halter <[email protected]>

---------

Co-authored-by: Oli <[email protected]>
Co-authored-by: Micah Halter <[email protected]>
  • Loading branch information
3 people authored May 23, 2023
1 parent 7d84203 commit e4915db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lua/astrocommunity/pack/typescript/typescript.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ return {
},
opts = function() return { server = require("astronvim.utils.lsp").config "tsserver" } end,
},
{
"jose-elias-alvarez/null-ls.nvim",
opts = function(_, opts)
opts.sources = utils.list_insert_unique(opts.sources, require "typescript.extensions.null-ls.code-actions")
end,
},
{
"nvim-neo-tree/neo-tree.nvim",
opts = function(_, opts)
Expand Down

0 comments on commit e4915db

Please sign in to comment.