kickstart.nvim/lua/custom/options/init.lua

27 lines
497 B
Lua
Raw Normal View History

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.opt.smartindent = true
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true
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
2023-06-06 12:55:16 +01:00
vim.opt.splitright = true
vim.opt.splitbelow = true
2023-06-08 01:22:25 +01:00
-- horizontal cursorline
vim.opt.cursorline = true
2023-10-22 15:16:22 +01:00
-- disable mouse mode
vim.o.mouse = ''