chore(wip): 1
This commit is contained in:
		
							parent
							
								
									d5dff83e53
								
							
						
					
					
						commit
						726fd3b71a
					
				
							
								
								
									
										3
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										3
									
								
								init.lua
								
								
								
								
							| 
						 | 
					@ -95,6 +95,9 @@ require('lazy').setup({
 | 
				
			||||||
        'williamboman/mason.nvim',
 | 
					        'williamboman/mason.nvim',
 | 
				
			||||||
        opts = {
 | 
					        opts = {
 | 
				
			||||||
          ensure_installed = {
 | 
					          ensure_installed = {
 | 
				
			||||||
 | 
					            "black",
 | 
				
			||||||
 | 
					            "eslint-lsp",
 | 
				
			||||||
 | 
					            "prettier",
 | 
				
			||||||
            "typescript-language-server"
 | 
					            "typescript-language-server"
 | 
				
			||||||
          }
 | 
					          }
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,16 +8,14 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
return {
 | 
					return {
 | 
				
			||||||
  -- NOTE: Yes, you can install new plugins here!
 | 
					  -- NOTE: Yes, you can install new plugins here!
 | 
				
			||||||
 | 
					  'williamboman/mason.nvim',
 | 
				
			||||||
  'mfussenegger/nvim-dap',
 | 
					  'mfussenegger/nvim-dap',
 | 
				
			||||||
 | 
					  'jay-babu/mason-nvim-dap.nvim',
 | 
				
			||||||
  -- NOTE: And you can specify dependencies as well
 | 
					  -- NOTE: And you can specify dependencies as well
 | 
				
			||||||
  dependencies = {
 | 
					  dependencies = {
 | 
				
			||||||
    -- Creates a beautiful debugger UI
 | 
					    -- Creates a beautiful debugger UI
 | 
				
			||||||
    'rcarriga/nvim-dap-ui',
 | 
					    'rcarriga/nvim-dap-ui',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    -- Installs the debug adapters for you
 | 
					 | 
				
			||||||
    'williamboman/mason.nvim',
 | 
					 | 
				
			||||||
    'jay-babu/mason-nvim-dap.nvim',
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    -- Add your own debuggers here
 | 
					    -- Add your own debuggers here
 | 
				
			||||||
    'leoluz/nvim-dap-go',
 | 
					    'leoluz/nvim-dap-go',
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
| 
						 | 
					@ -28,6 +26,7 @@ return {
 | 
				
			||||||
    require('mason-nvim-dap').setup {
 | 
					    require('mason-nvim-dap').setup {
 | 
				
			||||||
      -- Makes a best effort to setup the various debuggers with
 | 
					      -- Makes a best effort to setup the various debuggers with
 | 
				
			||||||
      -- reasonable debug configurations
 | 
					      -- reasonable debug configurations
 | 
				
			||||||
 | 
					      automatic_installation = true,
 | 
				
			||||||
      automatic_setup = true,
 | 
					      automatic_setup = true,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      -- You can provide additional configuration to the handlers,
 | 
					      -- You can provide additional configuration to the handlers,
 | 
				
			||||||
| 
						 | 
					@ -39,6 +38,9 @@ return {
 | 
				
			||||||
      ensure_installed = {
 | 
					      ensure_installed = {
 | 
				
			||||||
        -- Update this to ensure that you have the debuggers for the langs you want
 | 
					        -- Update this to ensure that you have the debuggers for the langs you want
 | 
				
			||||||
        'delve',
 | 
					        'delve',
 | 
				
			||||||
 | 
					        'python',
 | 
				
			||||||
 | 
					        'jq',
 | 
				
			||||||
 | 
					        'stylua',
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue