diff options
-rw-r--r-- | .config/nvim/lua/settings.lua | 4 | ||||
-rw-r--r-- | .vimrc | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index 18329ae..67f9f6c 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua @@ -28,8 +28,8 @@ vim.o.startofline = true vim.o.expandtab = true -- expand tab to spaces vim.o.autoindent = true vim.o.smartindent = true -vim.o.tabstop = 4 -vim.o.shiftwidth = 4 -- indentation rule +vim.o.tabstop = 8 +vim.o.shiftwidth = 8 -- indentation rule vim.o.shiftround = true -- Display @@ -169,9 +169,9 @@ set expandtab " Be smart when using tabs ;) set smarttab -" 1 tab == 4 spaces -set shiftwidth=4 -set tabstop=4 +" 1 tab == 8 spaces +set shiftwidth=8 +set tabstop=8 " Linebreak on 500 characters set lbr |