mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-20 01:29:08 +02:00
JS Debug using obsolete vscode-chrome-debug lib
This commit is contained in:
parent
80b4d0176b
commit
07d3bcb177
2 changed files with 47 additions and 15 deletions
8
init.lua
8
init.lua
|
@ -651,7 +651,9 @@ require('lazy').setup({
|
|||
capabilities = lsp_capabilities,
|
||||
filetypes = { 'typescript', 'html', 'angular', 'htmlangular' },
|
||||
root_dir = function(fname)
|
||||
return require('lspconfig.util').root_pattern('angular.json', 'workspace.json', 'nx.json', 'package.json', 'tsconfig.base.json')(fname)
|
||||
return require('lspconfig.util').root_pattern('angular.json', 'workspace.json', 'nx.json', 'package.json', 'tsconfig.base.json', 'project.json')(
|
||||
fname
|
||||
)
|
||||
end,
|
||||
on_new_config = function(new_config, new_root_dir)
|
||||
new_config.cmd = {
|
||||
|
@ -913,7 +915,7 @@ require('lazy').setup({
|
|||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||
config = function()
|
||||
require('everforest').setup {
|
||||
background = 'medium',
|
||||
background = 'hard',
|
||||
ui_contrast = 'low',
|
||||
}
|
||||
|
||||
|
@ -1034,7 +1036,7 @@ require('lazy').setup({
|
|||
-- Here are some example plugins that I've included in the Kickstart repository.
|
||||
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
||||
--
|
||||
-- require 'kickstart.plugins.debug',
|
||||
require 'kickstart.plugins.debug',
|
||||
-- require 'kickstart.plugins.indent_line',
|
||||
-- require 'kickstart.plugins.lint',
|
||||
require 'kickstart.plugins.autopairs',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue