ignore yaml in treesitter, not sure this worked. added nvim-surround to plugins

This commit is contained in:
2022-11-03 10:42:16 +01:00
parent ec37142efa
commit 1ea6577635
2 changed files with 8 additions and 0 deletions

View File

@@ -42,3 +42,10 @@ let g:vimspector_sidebar_width = 85
let g:vimspector_bottombar_height = 15
let g:vimspector_terminal_maxwidth = 70
]])
require('nvim-treesitter.configs').setup {
indent = {
enable = true,
disable = { 'yaml' }
}
}

View File

@@ -55,4 +55,5 @@ return require('packer').startup(function(use)
"windwp/nvim-autopairs",
config = function() require("nvim-autopairs").setup {} end
}
use 'kylechui/nvim-surround'
end)