mirror of
https://github.com/softinio/nvim-config.git
synced 2025-09-03 16:16:42 -07:00
disable treesitter indent and re-enable smartindent
This commit is contained in:
parent
b768459ccf
commit
87a0613402
2 changed files with 2 additions and 2 deletions
2
init.lua
2
init.lua
|
@ -48,7 +48,7 @@ else
|
||||||
vim.o.breakindent = true
|
vim.o.breakindent = true
|
||||||
|
|
||||||
-- smart indenting
|
-- smart indenting
|
||||||
vim.o.smartindent = false
|
vim.o.smartindent = true
|
||||||
|
|
||||||
-- Save undo history
|
-- Save undo history
|
||||||
vim.o.undofile = true
|
vim.o.undofile = true
|
||||||
|
|
|
@ -58,7 +58,7 @@ return {
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
|
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = false },
|
||||||
incremental_selection = {
|
incremental_selection = {
|
||||||
enable = true,
|
enable = true,
|
||||||
keymaps = {
|
keymaps = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue