2024-08-23 11:45:45 +02:00
|
|
|
-- for colorizer.nvim
|
2024-08-21 23:40:39 +02:00
|
|
|
vim.o.termguicolors = true
|
2024-08-23 11:45:45 +02:00
|
|
|
|
|
|
|
|
-- 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
|
|
|
|
|
|