fixed tabbing after update
This commit is contained in:
parent
e72e688a4d
commit
49b2c57c45
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
-- settings
|
||||
-- Settings
|
||||
|
||||
-- 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")
|
||||
|
@ -11,10 +11,10 @@ vim.opt.rnu = true
|
|||
vim.opt.signcolumn = 'yes'
|
||||
|
||||
-- correct tabbing
|
||||
vim.api.nvim_set_option("tabstop",4)
|
||||
vim.api.nvim_set_option("softtabstop",4)
|
||||
vim.api.nvim_set_option("shiftwidth",4)
|
||||
vim.api.nvim_set_option("expandtab",true)
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
|
||||
-- smart indenting by vim
|
||||
vim.api.nvim_set_option("smartindent",true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue