summaryrefslogtreecommitdiffstats
path: root/nvim/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
commit1609e05823310c8ea7111967fe2c17b1070b529c (patch)
treef763dc9d8aa1dcb6b7adec9a20db551cd49271de /nvim/init.lua
parentb6957103ba5d99d4aac1b9a60636bb5931af15e9 (diff)
downloaddots-1609e05823310c8ea7111967fe2c17b1070b529c.tar.gz
remove python indent: closes #78
Diffstat (limited to 'nvim/init.lua')
-rw-r--r--nvim/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index 167114c..fb7c097 100644
--- a/nvim/init.lua
+++ b/nvim/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 = {