dotfiles/.config/nvim/lua/settings.lua

12 lines
318 B
Lua
Raw Normal View History

2022-08-08 01:41:01 +02:00
vim.o.number = true -- line numbers
vim.o.list = true -- show whitespace
vim.o.expandtab = true -- indent using spaces
vim.o.tabstop = 4 -- 1 tab = 4 spaces
vim.o.shiftwidth = 4 -- 1 indentation = 4 spaces
-- theme
vim.o.termguicolors = true
vim.o.background = 'dark'
vim.cmd('colorscheme omni')