disable ocaml by default
This commit is contained in:
		
							parent
							
								
									1c3187379f
								
							
						
					
					
						commit
						935eac81f9
					
				
							
								
								
									
										15
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										15
									
								
								init.lua
								
								
								
								
							| 
						 | 
				
			
			@ -169,10 +169,15 @@ vim.keymap.set('n', '<leader>fd', telscopeb.diagnostics, { desc = '[S]earch [D]i
 | 
			
		|||
require('nvim-treesitter.configs').setup {
 | 
			
		||||
  -- Add languages to be installed here that you want installed for treesitter
 | 
			
		||||
  ensure_installed = {
 | 
			
		||||
    'c', 'cpp', 'go', 'gomod',
 | 
			
		||||
    'gosum', 'gowork', 'lua',
 | 
			
		||||
    'vimdoc', 'vim', 'clojure',
 | 
			
		||||
    'commonlisp', 'ocaml', 'zig' },
 | 
			
		||||
    'c', 'cpp',
 | 
			
		||||
    'go', 'gomod', 'gosum', 'gowork',
 | 
			
		||||
    'lua',
 | 
			
		||||
    'vimdoc', 'vim',
 | 
			
		||||
    'clojure',
 | 
			
		||||
    'commonlisp',
 | 
			
		||||
    -- 'ocaml',
 | 
			
		||||
    'zig'
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
 | 
			
		||||
  auto_install = true,
 | 
			
		||||
| 
						 | 
				
			
			@ -294,7 +299,7 @@ local servers = {
 | 
			
		|||
  -- pyright = {},
 | 
			
		||||
  -- html = { filetypes = { 'html', 'twig', 'hbs'} },
 | 
			
		||||
  clojure_lsp = {},
 | 
			
		||||
  ocamllsp = {},
 | 
			
		||||
  -- ocamllsp = {},
 | 
			
		||||
  zls = {},
 | 
			
		||||
  lua_ls = {
 | 
			
		||||
    Lua = {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue