summaryrefslogtreecommitdiff
path: root/lua/settings.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-03-15 22:13:41 -0400
committerChris <[email protected]>2021-03-15 22:13:41 -0400
commitdceb7aa0ff9a9bf230a4d2eb2277d3a50a05a212 (patch)
tree14d875cf6ed7bd90ee8538253932f96f523b7de0 /lua/settings.lua
parentf7f7c45ad92b2aefcf7c2c450928fcee97cc15f8 (diff)
update some options
Diffstat (limited to 'lua/settings.lua')
-rw-r--r--lua/settings.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/settings.lua b/lua/settings.lua
index dbf4ee33..0af91824 100644
--- a/lua/settings.lua
+++ b/lua/settings.lua
@@ -14,15 +14,15 @@ 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.o.tabstop=2 --Insert 2 spaces for a tab
-vim.o.shiftwidth=2 --Change the number of space characters inserted for indentation
+vim.bo.tabstop=2 --Insert 2 spaces for a tab
+vim.bo.shiftwidth=2 --Change the number of space characters inserted for indentation
vim.o.smarttab=true --Makes tabbing smarter will realize you have 2 vs 4
-vim.o.expandtab=true --Converts tabs to spaces
-vim.o.smartindent=true --Makes indenting smart
+vim.bo.expandtab=true --Converts tabs to spaces
+vim.bo.smartindent=true --Makes indenting smart
vim.o.autoindent=true --Good auto indent
vim.o.laststatus=2 --Always display the status line
vim.wo.number = true
-vim.o.cursorline=true --Enable highlighting of the current line
+vim.wo.cursorline=true --Enable highlighting of the current line
vim.o.background="dark" --tell vim what the background color looks like
vim.o.showtabline=2 --Always show tabs
vim.o.showmode=false --We don't need to see things like -- INSERT -- anymore