vim.opt.writebackup=false-- if a file is being edited by another program (or was written to file while editing with another program), it is not allowed to be edited
vim.opt.expandtab=true-- convert tabs to spaces
vim.opt.shiftwidth=2-- the number of spaces inserted for each indentation
vim.opt.tabstop=2-- insert 2 spaces for a tab
vim.opt.cursorline=true-- highlight the current line
vim.opt.number=true-- set numbered lines
vim.opt.relativenumber=false-- set relative numbered lines
vim.opt.numberwidth=4-- set number column width to 2 {default 4}
vim.opt.signcolumn="yes"-- always show the sign column, otherwise it would shift the text each time
vim.opt.wrap=false-- display lines as one long line
vim.opt.scrolloff=8-- is one of my fav
vim.opt.sidescrolloff=8
vim.opt.guifont="monospace:h17"-- the font used in graphical neovim applications