added custom vim settings
This commit is contained in:
parent
a0d2b224cd
commit
57a4adc3bf
1 changed files with 14 additions and 0 deletions
14
lua/custom/options/init.lua
Normal file
14
lua/custom/options/init.lua
Normal 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
|
||||
|
Loading…
Add table
Reference in a new issue