Move autoindent to indent settings

This commit is contained in:
ItsDrike 2021-12-06 13:54:55 +01:00
parent 88891bb2a4
commit afa4c250c5
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843

View file

@ -6,6 +6,7 @@ local g = vim.g
cmd[[filetype plugin on]]
-- Tab/Indent settings
o.autoindent = true -- Enable autoindent
o.expandtab = true -- Expand tabs to spaces
o.tabstop = 4 -- Tab size in spaces
o.shiftwidth = 4 -- Indentation size
@ -39,7 +40,6 @@ table.insert(o.path, "**") -- Search down into subfolders with
-- Misc
o.mouse = "a" -- Enable mouse mode
o.encoding = "utf-8" -- Use UTF-8 encoding
o.autoindent = true -- Enable autoindent
o.autoread = true -- Automatically reload files on change
o.undolevels = 999 -- Lots of these
o.history = 1000 -- More history