mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-31 15:19:26 +02:00
disable treesitter indent for python
This commit is contained in:
parent
225175c9e4
commit
94444afe20
2 changed files with 3 additions and 4 deletions
|
@ -36,10 +36,9 @@
|
||||||
-- return npairs.check_break_line_char()
|
-- return npairs.check_break_line_char()
|
||||||
-- end
|
-- end
|
||||||
-- end
|
-- end
|
||||||
--
|
--
|
||||||
--
|
--
|
||||||
-- remap('i' , '<CR>','v:lua.MUtils.completion_confirm()', {expr = true , noremap = true})
|
-- remap('i' , '<CR>','v:lua.MUtils.completion_confirm()', {expr = true , noremap = true})
|
||||||
|
|
||||||
-- TODO switch to lua plugin when possible
|
-- TODO switch to lua plugin when possible
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
let g:lexima_no_default_rules = v:true
|
let g:lexima_no_default_rules = v:true
|
||||||
|
|
|
@ -5,7 +5,7 @@ require'nvim-treesitter.configs'.setup {
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true -- false will disable the whole extension
|
enable = true -- false will disable the whole extension
|
||||||
},
|
},
|
||||||
indent = {enable = true},
|
indent = {enable = true, disable = {"python"}},
|
||||||
playground = {
|
playground = {
|
||||||
enable = true,
|
enable = true,
|
||||||
disable = {},
|
disable = {},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue