2023-06-06 11:49:01 +01:00
|
|
|
-- custom vim options
|
|
|
|
|
|
|
|
-- set fat cursor
|
|
|
|
vim.opt.guicursor = ''
|
|
|
|
|
|
|
|
-- set relative-number
|
|
|
|
vim.wo.relativenumber = true
|
|
|
|
|
|
|
|
vim.o.termguicolors = true
|
|
|
|
vim.opt.smartindent = true
|
|
|
|
vim.opt.tabstop = 2
|
|
|
|
vim.opt.shiftwidth = 2
|
|
|
|
vim.opt.expandtab = true
|
|
|
|
|
2023-06-06 12:53:14 +01:00
|
|
|
vim.opt.colorcolumn = '80'
|
|
|
|
|
|
|
|
-- always have a set number of lines
|
|
|
|
-- below the screen except at the end of the screen
|
|
|
|
vim.opt.scrolloff = 8
|