20 lines
379 B
Lua
20 lines
379 B
Lua
-- for colorizer.nvim
|
|
vim.o.termguicolors = true
|
|
|
|
-- Line numbers
|
|
vim.opt.number = true
|
|
vim.opt.relativenumber = true
|
|
vim.opt.cursorline = true
|
|
|
|
-- Commands
|
|
vim.opt.showcmd = true
|
|
|
|
-- Formatting
|
|
-- -- Indent
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.tabstop = 4
|
|
vim.opt.autoindent = true
|
|
vim.opt.expandtab = false
|
|
vim.opt.softtabstop = 4
|
|
|