new theme + removing php from treesitter
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
				
			|||||||
-- parsing and highlighting
 | 
					-- parsing and highlighting
 | 
				
			||||||
require'nvim-treesitter.configs'.setup {
 | 
					require'nvim-treesitter.configs'.setup {
 | 
				
			||||||
  -- A list of parser names, or "all" (the five listed parsers should always be installed)
 | 
					  -- A list of parser names, or "all" (the five listed parsers should always be installed)
 | 
				
			||||||
  ensure_installed = { "python", "javascript", "typescript", "php", "c", "rust", "bash", "lua", "vim", "vimdoc", "query" },
 | 
					  ensure_installed = { "python", "javascript", "typescript", "c", "rust", "bash", "lua", "vim", "vimdoc", "query" },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  -- Install parsers synchronously (only applied to `ensure_installed`)
 | 
					  -- Install parsers synchronously (only applied to `ensure_installed`)
 | 
				
			||||||
  sync_install = false,
 | 
					  sync_install = false,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -57,10 +57,9 @@ return require('packer').startup(function(use)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    -- pretty
 | 
					    -- pretty
 | 
				
			||||||
    use {
 | 
					    use {
 | 
				
			||||||
        'catppuccin/nvim',
 | 
					        'navarasu/onedark.nvim',
 | 
				
			||||||
        as = 'mocha',
 | 
					 | 
				
			||||||
        config = function()
 | 
					        config = function()
 | 
				
			||||||
            vim.cmd('colorscheme catppuccin-mocha')
 | 
					            vim.cmd('colorscheme onedark')
 | 
				
			||||||
        end
 | 
					        end
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user