Files
dotfiles/.config/nvim/lua/config.lua
2025-12-14 18:39:59 +01:00

13 lines
244 B
Lua

vim.o.syntax = "on"
vim.o.expandtab = true
vim.o.tabstop = 4
vim.o.softtabstop = 4
vim.o.shiftwidth = 4
vim.o.smarttab = true
vim.o.smartindent = true
vim.o.number = true
vim.o.relativenumber = true
vim.o.colorcolumn = "100"
vim.o.bg = "dark"