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 {
|
require('nvim-treesitter.configs').setup {
|
||||||
-- Add languages to be installed here that you want installed for treesitter
|
-- Add languages to be installed here that you want installed for treesitter
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
'c', 'cpp', 'go', 'gomod',
|
'c', 'cpp',
|
||||||
'gosum', 'gowork', 'lua',
|
'go', 'gomod', 'gosum', 'gowork',
|
||||||
'vimdoc', 'vim', 'clojure',
|
'lua',
|
||||||
'commonlisp', 'ocaml', 'zig' },
|
'vimdoc', 'vim',
|
||||||
|
'clojure',
|
||||||
|
'commonlisp',
|
||||||
|
-- 'ocaml',
|
||||||
|
'zig'
|
||||||
|
},
|
||||||
|
|
||||||
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
|
@ -294,7 +299,7 @@ local servers = {
|
||||||
-- pyright = {},
|
-- pyright = {},
|
||||||
-- html = { filetypes = { 'html', 'twig', 'hbs'} },
|
-- html = { filetypes = { 'html', 'twig', 'hbs'} },
|
||||||
clojure_lsp = {},
|
clojure_lsp = {},
|
||||||
ocamllsp = {},
|
-- ocamllsp = {},
|
||||||
zls = {},
|
zls = {},
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
|
|
Loading…
Reference in New Issue