mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Move autoindent to indent settings
This commit is contained in:
parent
88891bb2a4
commit
afa4c250c5
|
@ -6,6 +6,7 @@ local g = vim.g
|
||||||
cmd[[filetype plugin on]]
|
cmd[[filetype plugin on]]
|
||||||
|
|
||||||
-- Tab/Indent settings
|
-- Tab/Indent settings
|
||||||
|
o.autoindent = true -- Enable autoindent
|
||||||
o.expandtab = true -- Expand tabs to spaces
|
o.expandtab = true -- Expand tabs to spaces
|
||||||
o.tabstop = 4 -- Tab size in spaces
|
o.tabstop = 4 -- Tab size in spaces
|
||||||
o.shiftwidth = 4 -- Indentation size
|
o.shiftwidth = 4 -- Indentation size
|
||||||
|
@ -39,7 +40,6 @@ table.insert(o.path, "**") -- Search down into subfolders with
|
||||||
-- Misc
|
-- Misc
|
||||||
o.mouse = "a" -- Enable mouse mode
|
o.mouse = "a" -- Enable mouse mode
|
||||||
o.encoding = "utf-8" -- Use UTF-8 encoding
|
o.encoding = "utf-8" -- Use UTF-8 encoding
|
||||||
o.autoindent = true -- Enable autoindent
|
|
||||||
o.autoread = true -- Automatically reload files on change
|
o.autoread = true -- Automatically reload files on change
|
||||||
o.undolevels = 999 -- Lots of these
|
o.undolevels = 999 -- Lots of these
|
||||||
o.history = 1000 -- More history
|
o.history = 1000 -- More history
|
||||||
|
|
Loading…
Reference in a new issue