Converting tabs to spaces, 4 spaces per tab
This commit is contained in:
parent
1ff1e6f963
commit
88f159bbcc
6
init.lua
6
init.lua
|
@ -809,6 +809,12 @@ vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||||
-- Correct scroll level
|
-- Correct scroll level
|
||||||
vim.o.scrolloff = 8
|
vim.o.scrolloff = 8
|
||||||
|
|
||||||
|
-- Correct tabstop
|
||||||
|
vim.opt.tabstop = 4
|
||||||
|
vim.opt.shiftwidth = 4
|
||||||
|
vim.opt.softtabstop = 4
|
||||||
|
vim.opt.expandtab = true
|
||||||
|
|
||||||
-- Exiting with a blinking cursor
|
-- Exiting with a blinking cursor
|
||||||
vim.api.nvim_create_autocmd('VimLeave', {
|
vim.api.nvim_create_autocmd('VimLeave', {
|
||||||
once = true,
|
once = true,
|
||||||
|
|
Loading…
Reference in New Issue