align on their own lines

This commit is contained in:
Hörmet Yiltiz 2023-12-21 16:40:04 -05:00
parent 629994d2b4
commit e5081f274b
1 changed files with 13 additions and 4 deletions

View File

@ -424,9 +424,18 @@ vim.defer_fn(function()
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', 'lua', 'python', 'rust', 'c',
'tsx', 'javascript', 'typescript', 'cpp',
'vimdoc', 'vim', 'bash' 'go',
'lua',
'python',
'rust',
'tsx',
'javascript',
'typescript',
'vimdoc',
'vim',
'bash',
}, },
-- 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!)