disable treesitter indent for python

This commit is contained in:
Chris 2021-03-28 15:50:28 -04:00
parent 225175c9e4
commit 94444afe20
2 changed files with 3 additions and 4 deletions

View file

@ -36,10 +36,9 @@
-- return npairs.check_break_line_char()
-- end
-- end
--
--
--
--
-- remap('i' , '<CR>','v:lua.MUtils.completion_confirm()', {expr = true , noremap = true})
-- TODO switch to lua plugin when possible
vim.cmd([[
let g:lexima_no_default_rules = v:true

View file

@ -5,7 +5,7 @@ require'nvim-treesitter.configs'.setup {
highlight = {
enable = true -- false will disable the whole extension
},
indent = {enable = true},
indent = {enable = true, disable = {"python"}},
playground = {
enable = true,
disable = {},