summaryrefslogtreecommitdiff
path: root/lua/settings.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-03-17 02:19:25 -0400
committerChris <[email protected]>2021-03-17 02:19:25 -0400
commit37179bc46d079c4d0d553d5c134eea38d620291a (patch)
tree62a915e205b0ba3c58ae067db66a816d313b8199 /lua/settings.lua
parent4308a669776cf1ea2703f4ad26dc39c622e847bb (diff)
add rich git support with hunks
Diffstat (limited to 'lua/settings.lua')
-rw-r--r--lua/settings.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/settings.lua b/lua/settings.lua
index b4657987..5c5945cf 100644
--- a/lua/settings.lua
+++ b/lua/settings.lua
@@ -12,8 +12,8 @@ vim.o.termguicolors=true
vim.o.splitright=true --Vertical splits will automatically be to the right
vim.o.t_Co="256" --Support 256 colors
vim.o.conceallevel=0 --So that I can see `` in markdown files
-vim.bo.tabstop=2 --Insert 2 spaces for a tab
-vim.bo.shiftwidth=2 --Change the number of space characters inserted for indentation
+vim.cmd('set ts=4') --Insert 2 spaces for a tab
+vim.cmd('set sw=4') --Change the number of space characters inserted for indentation
vim.bo.expandtab=true --Converts tabs to spaces
vim.bo.smartindent=true --Makes indenting smart
vim.wo.number = true