diff options
author | Chris Patti <feoh@feoh.org> | 2023-06-07 20:41:30 -0400 |
---|---|---|
committer | Chris Patti <feoh@feoh.org> | 2023-06-07 20:41:30 -0400 |
commit | e6cb90b2b33127dafdee351cc84a1d4ae06ce71f (patch) | |
tree | 8fb3b87817b5ff06158421b44b30f22dfc0d39e5 /init.lua | |
parent | cdaa750c86cfc0c8f2fc1c8638b7296c327bf5a9 (diff) |
Fixes #336 - Enabale treesitter indent for Python
Tested in my local configuratoin. Indenting works great.
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -295,7 +295,7 @@ require('nvim-treesitter.configs').setup { auto_install = false, highlight = { enable = true }, - indent = { enable = true, disable = { 'python' } }, + indent = { enable = true }, incremental_selection = { enable = true, keymaps = { |