summaryrefslogtreecommitdiff
path: root/lua/tjk/options.lua
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-05-22 13:51:34 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-05-22 13:51:34 -0500
commitd9489ed67edf4737ee92754a605484addec03781 (patch)
tree35911ca9c3356f67161fdf620e973fc8a349be28 /lua/tjk/options.lua
parentd7471c58485cc90aea53d8a5935e46d347f43b8c (diff)
downloadnvim-d9489ed67edf4737ee92754a605484addec03781.tar.xz
nvim-d9489ed67edf4737ee92754a605484addec03781.zip
fix treesitter sync and disable indent temporarily
Diffstat (limited to 'lua/tjk/options.lua')
-rw-r--r--lua/tjk/options.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/tjk/options.lua b/lua/tjk/options.lua
index da82181..7d6376f 100644
--- a/lua/tjk/options.lua
+++ b/lua/tjk/options.lua
@@ -24,8 +24,11 @@ vim.o.shiftwidth = 4 -- tab key will only insert one tab
vim.o.ignorecase = true -- case-insensitive search...
vim.o.smartcase = true -- ...unless the search term is capital
--- experimental
+-- indentation
+vim.o.autoindent = true
vim.o.smartindent = true
+
+-- experimental
vim.opt.wildmode = { "list:longest", "list:full" } -- Better auto-complete
-- dont continue comments on to new lines (:help fo-table)