2024-04-22 13:12:54 +02:00
|
|
|
-- how many spaces large a TAB character is
|
|
|
|
vim.o.tabstop=2
|
|
|
|
-- when indenting with '>', use space width
|
|
|
|
vim.o.shiftwidth=2
|
|
|
|
-- insert spaces instead of TAB character
|
|
|
|
vim.o.expandtab=true
|
2024-04-22 15:50:31 +02:00
|
|
|
-- show absolute line numbers
|
|
|
|
-- TODO: show relative line numbers for relative commands like 'd'
|
|
|
|
vim.o.number = true
|