diff options
author | LostNeophyte <[email protected]> | 2022-10-31 19:15:26 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-31 19:15:26 +0100 |
commit | f4920802d543ca0386d1e472a1dc97ad5e6700c0 (patch) | |
tree | 7fdf78cdd86538970082e1352e83ba2caf2e3d0d /lua/lvim/config | |
parent | 6ea5341a846e8bc1848ce765c6d97f1dbbd307d5 (diff) |
fix(defaults): don't use smartindent (#3363)
Diffstat (limited to 'lua/lvim/config')
-rw-r--r-- | lua/lvim/config/settings.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lua/lvim/config/settings.lua b/lua/lvim/config/settings.lua index 4f61ed09..5724406a 100644 --- a/lua/lvim/config/settings.lua +++ b/lua/lvim/config/settings.lua @@ -28,7 +28,6 @@ M.load_default_options = function() showmode = false, -- we don't need to see things like -- INSERT -- anymore showtabline = 2, -- always show tabs smartcase = true, -- smart case - smartindent = true, -- make indenting smarter again splitbelow = true, -- force all horizontal splits to go below current window splitright = true, -- force all vertical splits to go to the right of current window swapfile = false, -- creates a swapfile |