added custom vim settings

This commit is contained in:
Micah Effiong 2023-06-06 11:49:01 +01:00
parent a0d2b224cd
commit 57a4adc3bf
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
-- 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