summaryrefslogtreecommitdiffstats
path: root/nvim/lua/options.lua
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2025-04-14 19:45:47 +0200
committerChristoph Schlosser <christoph@linux.com>2025-04-14 19:45:47 +0200
commit343cbcc42d329b24a3ef03d31035dc7c1b708c5b (patch)
tree01716e44acae7935478af087ccdaf4af33157175 /nvim/lua/options.lua
parentafb04695977c300478b42e06c78c656358616df3 (diff)
downloaddots-343cbcc42d329b24a3ef03d31035dc7c1b708c5b.tar.gz
nvim: Set tabs/whitespace options
Diffstat (limited to 'nvim/lua/options.lua')
-rw-r--r--nvim/lua/options.lua5
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