From 343cbcc42d329b24a3ef03d31035dc7c1b708c5b Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Mon, 14 Apr 2025 19:45:47 +0200 Subject: nvim: Set tabs/whitespace options --- nvim/lua/options.lua | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'nvim/lua/options.lua') 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 -- cgit v1.2.3