align on their own lines
This commit is contained in:
parent
629994d2b4
commit
e5081f274b
15
init.lua
15
init.lua
|
@ -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!)
|
||||||
|
|
Loading…
Reference in New Issue