|
@@ -19,6 +19,7 @@ vim.cmd('set sw=4') -- Change the number of space characters inserted for indent
|
|
vim.bo.expandtab = true -- Converts tabs to spaces
|
|
vim.bo.expandtab = true -- Converts tabs to spaces
|
|
vim.bo.smartindent = true -- Makes indenting smart
|
|
vim.bo.smartindent = true -- Makes indenting smart
|
|
vim.wo.number = true -- set numbered lines
|
|
vim.wo.number = true -- set numbered lines
|
|
|
|
+vim.wo.relativenumber = O.relative_number -- set relative number
|
|
vim.wo.cursorline = true -- Enable highlighting of the current line
|
|
vim.wo.cursorline = true -- Enable highlighting of the current line
|
|
vim.o.showtabline = 2 -- Always show tabs
|
|
vim.o.showtabline = 2 -- Always show tabs
|
|
vim.o.showmode = false -- We don't need to see things like -- INSERT -- anymore
|
|
vim.o.showmode = false -- We don't need to see things like -- INSERT -- anymore
|