Skip to content

Commit aa660e6

Browse files
committed
remove python indent: closes nvim-lua#78
1 parent bec7410 commit aa660e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nv
33
local is_bootstrap = false
44
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
55
is_bootstrap = true
6-
vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path})
6+
vim.fn.system { 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path }
77
vim.cmd [[packadd packer.nvim]]
88
end
99

@@ -221,7 +221,7 @@ require('nvim-treesitter.configs').setup {
221221
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help' },
222222

223223
highlight = { enable = true },
224-
indent = { enable = true },
224+
indent = { enable = true, disable = { 'python' } },
225225
incremental_selection = {
226226
enable = true,
227227
keymaps = {

0 commit comments

Comments
 (0)