summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2022-12-20 16:03:05 -0500
committerTJ DeVries <devries.timothyj@gmail.com>2022-12-20 16:03:05 -0500
commitaa660e64cea945e7ee4b0ede2475e1ac49e1f592 (patch)
tree4f96895e5b8d305dd8c04afb8ad2d58d5fe7291f /init.lua
parentbec74101277a56b2b890f0020c29037fd7d045a7 (diff)
remove python indent: closes #78
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 167114c..fb7c097 100644
--- a/init.lua
+++ b/init.lua
@@ -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 = {