fix: linting, formatting
This commit is contained in:
parent
0021a83ef3
commit
7c9408ea3c
5
init.lua
5
init.lua
|
@ -664,7 +664,10 @@ require('lazy').setup({
|
||||||
--
|
--
|
||||||
-- You can use a sub-list to tell conform to run *until* a formatter
|
-- You can use a sub-list to tell conform to run *until* a formatter
|
||||||
-- is found.
|
-- is found.
|
||||||
-- javascript = { { "prettierd", "prettier" } },
|
javascript = { { 'prettierd', 'prettier' } },
|
||||||
|
javascriptreact = { { 'prettierd', 'prettier' } },
|
||||||
|
typescript = { { 'prettierd', 'prettier' } },
|
||||||
|
typescriptreact = { { 'prettierd', 'prettier' } },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,4 +8,5 @@ return {
|
||||||
require 'custom.plugins.cokeline',
|
require 'custom.plugins.cokeline',
|
||||||
require 'custom.plugins.alpha',
|
require 'custom.plugins.alpha',
|
||||||
require 'custom.plugins.typescript-tools',
|
require 'custom.plugins.typescript-tools',
|
||||||
|
require 'custom.plugins.tsc',
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
return {
|
||||||
|
'dmmulroy/tsc.nvim',
|
||||||
|
config = function()
|
||||||
|
require('tsc').setup()
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Reference in New Issue