diff options
-rw-r--r-- | lua/config.lua | 1 | ||||
-rw-r--r-- | lua/treesitter.lua | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lua/config.lua b/lua/config.lua index 582860f..cbe7560 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -27,3 +27,4 @@ vim.api.nvim_create_autocmd({ "BufEnter", "CursorHold", "CursorHoldI", "FocusGai pattern = { "*" }, }) +vim.o.cinoptions = "l1,g0,N-s,(s,U1,w1,Ws" diff --git a/lua/treesitter.lua b/lua/treesitter.lua index 8113094..dc281e1 100644 --- a/lua/treesitter.lua +++ b/lua/treesitter.lua @@ -42,7 +42,7 @@ require("nvim-treesitter.configs").setup({ }, }, }, - indent = { enable = true, disable = { "python" } }, + indent = { enable = false, disable = { "python" } }, additional_vim_regex_highlighting = false, }) |