Added C# support in treesitter

This commit is contained in:
Titus Moore 2023-05-05 11:47:26 -04:00
parent baf8caa6f5
commit c8306cb467
1 changed files with 2 additions and 1 deletions

View File

@ -279,7 +279,8 @@ vim.keymap.set('n', '<leader>hp', function() require('harpoon.ui').nav_prev() en
-- See `:help nvim-treesitter` -- See `:help nvim-treesitter`
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 = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim', 'php', 'dart' }, ensure_installed = { 'c', 'cpp', 'c_sharp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim', 'php',
'dart' },
-- 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 = false, auto_install = false,