Added C# support in treesitter
This commit is contained in:
parent
baf8caa6f5
commit
c8306cb467
3
init.lua
3
init.lua
|
|
@ -279,7 +279,8 @@ vim.keymap.set('n', '<leader>hp', function() require('harpoon.ui').nav_prev() en
|
|||
-- See `:help nvim-treesitter`
|
||||
require('nvim-treesitter.configs').setup {
|
||||
-- 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!)
|
||||
auto_install = false,
|
||||
|
|
|
|||
Loading…
Reference in New Issue