diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2022-12-20 16:03:05 -0500 |
---|---|---|
committer | TJ DeVries <devries.timothyj@gmail.com> | 2022-12-20 16:03:05 -0500 |
commit | aa660e64cea945e7ee4b0ede2475e1ac49e1f592 (patch) | |
tree | 4f96895e5b8d305dd8c04afb8ad2d58d5fe7291f | |
parent | bec74101277a56b2b890f0020c29037fd7d045a7 (diff) |
remove python indent: closes #78
-rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nv local is_bootstrap = false if vim.fn.empty(vim.fn.glob(install_path)) > 0 then is_bootstrap = true - vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path}) + vim.fn.system { 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path } vim.cmd [[packadd packer.nvim]] end @@ -221,7 +221,7 @@ require('nvim-treesitter.configs').setup { ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript', 'help' }, highlight = { enable = true }, - indent = { enable = true }, + indent = { enable = true, disable = { 'python' } }, incremental_selection = { enable = true, keymaps = { |