Updating to address Lazy.nvim changes.
This commit is contained in:
		
							parent
							
								
									6dd28266f7
								
							
						
					
					
						commit
						da51944598
					
				
					 2 changed files with 5 additions and 13 deletions
				
			
		|  | @ -324,7 +324,7 @@ require("lazy").setup({ | ||||||
|     -- ------------------------------------------------------------------------- |     -- ------------------------------------------------------------------------- | ||||||
|     { |     { | ||||||
|         'benknoble/vim-racket', |         'benknoble/vim-racket', | ||||||
|         event = 'BufReadPre,BufNewFile *.rkt', |         event = { 'BufNewFile *.rkt', 'BufReadPre *.rkt' }, | ||||||
|         lazy = true, |         lazy = true, | ||||||
|     }, |     }, | ||||||
| 
 | 
 | ||||||
|  | @ -332,7 +332,7 @@ require("lazy").setup({ | ||||||
|     -- ------------------------------------------------------------------------- |     -- ------------------------------------------------------------------------- | ||||||
|     { |     { | ||||||
|         'bakpakin/janet.vim', |         'bakpakin/janet.vim', | ||||||
|         event = 'BufReadPre,BufNewFile *.janet', |         event = { 'BufNewFile *.janet', 'BufReadPre *.janet' }, | ||||||
|         lazy = true |         lazy = true | ||||||
|     }, |     }, | ||||||
| 
 | 
 | ||||||
|  | @ -340,15 +340,7 @@ require("lazy").setup({ | ||||||
|     -- ------------------------------------------------------------------------- |     -- ------------------------------------------------------------------------- | ||||||
|     { |     { | ||||||
|         'aklt/plantuml-syntax', |         'aklt/plantuml-syntax', | ||||||
|         event = 'BufReadPre,BufNewFile *.puml', |         event = { 'BufNewFile *.puml', 'BufReadPre *.puml' }, | ||||||
|         lazy = true, |  | ||||||
|     }, |  | ||||||
| 
 |  | ||||||
|     -- Terraform |  | ||||||
|     -- ------------------------------------------------------------------------- |  | ||||||
|     { |  | ||||||
|         'hashivim/vim-terraform', |  | ||||||
|         event = 'BufReadPre,BufNewFile *.tf', |  | ||||||
|         lazy = true, |         lazy = true, | ||||||
|     }, |     }, | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -2,8 +2,8 @@ require'nvim-treesitter.configs'.setup { | ||||||
|     -- One of "all", "maintained", or a list of languages |     -- One of "all", "maintained", or a list of languages | ||||||
|     ensure_installed = { |     ensure_installed = { | ||||||
|         "c", "zig", "bash", "scala", "yaml", "css", "javascript", |         "c", "zig", "bash", "scala", "yaml", "css", "javascript", | ||||||
|         "latex", "clojure", "lua", "cpp", "hcl", "json", "ocaml", |         "latex", "clojure", "lua", "cpp", "hcl", "json", "ocaml", "toml", | ||||||
|         "gleam" |         "rust", "sql", "python", "gitcommit", "gitignore", "html" | ||||||
|     }, |     }, | ||||||
| 
 | 
 | ||||||
|     -- Install languages synchronously (only applied to `ensure_installed`) |     -- Install languages synchronously (only applied to `ensure_installed`) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 pfm
						pfm