Skip to content

Commit

Permalink
fix: import cost
Browse files Browse the repository at this point in the history
  • Loading branch information
snelling-a committed Aug 16, 2023
1 parent 7084f07 commit 4c9f5ce
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lua/plugins/import-cost.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
local ImportCost = { "barrett-ruth/import-cost.nvim" }
local ImportCost = {
"barrett-ruth/import-cost.nvim",
}

ImportCost.build = "sh install.sh yarn"

ImportCost.opts = { highlight = "TSComment" }
ImportCost.opts = {
highlight = "TSComment",
}

ImportCost.ft = require("config.util.constants").javascript_typescript
ImportCost.ft = vim.fn.deepcopy(require("config.util.constants").javascript_typescript)

ImportCost.config = true

return ImportCost

0 comments on commit 4c9f5ce

Please sign in to comment.