diff options
Diffstat (limited to 'lua/tjk/options.lua')
| -rw-r--r-- | lua/tjk/options.lua | 5 |
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) |
