diff options
Diffstat (limited to 'nvim/lua/options.lua')
| -rw-r--r-- | nvim/lua/options.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index add7117..5267750 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -66,4 +66,9 @@ vim.opt.scrolloff = 10 -- See `:help 'confirm'` vim.opt.confirm = true +vim.opt.syntax = 'enable' +vim.opt.ts = 2 +vim.opt.sts = 2 +vim.opt.sw = 2 +vim.opt.expandtab = true -- vim: ts=2 sts=2 sw=2 et |