chores(all): format

This commit is contained in:
2024-11-10 15:38:47 +01:00
parent 6851e16bcf
commit 8f04c0e04c
9 changed files with 42 additions and 40 deletions

View File

@ -4,8 +4,8 @@ vim.defer_fn(function()
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', 'javascript', 'typescript', 'vimdoc', 'vim', 'bash', 'norg', 'norg_meta', 'gdscript' },
ignore_install = {'latex', 'tex', 'markdown'},
disable = {'latex', 'tex', 'markdown'},
ignore_install = { 'latex', 'tex', 'markdown' },
disable = { 'latex', 'tex', 'markdown' },
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
auto_install = false,
@ -15,7 +15,7 @@ vim.defer_fn(function()
highlight = { enable = true },
indent = {
enable = true,
disable = {'javascript'}
disable = { 'javascript' }
},
incremental_selection = {
enable = true,