fixed tabbing after update

This commit is contained in:
pr0c3550r 2023-01-21 20:57:59 +01:00
parent e72e688a4d
commit 49b2c57c45

View file

@ -1,4 +1,4 @@
-- settings -- Settings
-- cursor -- cursor
vim.api.nvim_set_option("guicursor","n-v-c-sm:hor20-Cursor,i-ci-ve:ver80-iCursor,r-cr-o:hor40,a:blinkwait700-blinkoff400-blinkon250") vim.api.nvim_set_option("guicursor","n-v-c-sm:hor20-Cursor,i-ci-ve:ver80-iCursor,r-cr-o:hor40,a:blinkwait700-blinkoff400-blinkon250")
@ -11,10 +11,10 @@ vim.opt.rnu = true
vim.opt.signcolumn = 'yes' vim.opt.signcolumn = 'yes'
-- correct tabbing -- correct tabbing
vim.api.nvim_set_option("tabstop",4) vim.opt.tabstop = 4
vim.api.nvim_set_option("softtabstop",4) vim.opt.softtabstop = 4
vim.api.nvim_set_option("shiftwidth",4) vim.opt.shiftwidth = 4
vim.api.nvim_set_option("expandtab",true) vim.opt.expandtab = true
-- smart indenting by vim -- smart indenting by vim
vim.api.nvim_set_option("smartindent",true) vim.api.nvim_set_option("smartindent",true)